1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-31 02:01:16 +00:00

tests: update old import from wlauto

exec_control tests were still importing from wlauto rather than wa. This
rectifies that.
This commit is contained in:
Sergei Trofimov 2017-04-26 14:27:26 +01:00
parent f8d5a3e358
commit 0e5f7eb724

View File

@ -19,9 +19,9 @@ from unittest import TestCase
from nose.tools import assert_equal, assert_raises
from wlauto.utils.exec_control import (init_environment, reset_environment,
activate_environment, once,
once_per_class, once_per_instance)
from wa.utils.exec_control import (init_environment, reset_environment,
activate_environment, once,
once_per_class, once_per_instance)
class TestClass(object):