From 0e5f7eb72436b7e05f4bccbe99026c4a955808c1 Mon Sep 17 00:00:00 2001 From: Sergei Trofimov Date: Wed, 26 Apr 2017 14:27:26 +0100 Subject: [PATCH] tests: update old import from wlauto exec_control tests were still importing from wlauto rather than wa. This rectifies that. --- wa/tests/test_exec_control.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wa/tests/test_exec_control.py b/wa/tests/test_exec_control.py index 490239d2..70e28aec 100644 --- a/wa/tests/test_exec_control.py +++ b/wa/tests/test_exec_control.py @@ -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):