Skip to content

Commit

Permalink
Fixed imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
BryanRumsey committed Apr 27, 2023
1 parent 18b043a commit 65e84de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions test/run_integration_tests.py
Expand Up @@ -30,9 +30,9 @@
print('Running tests in develop mode. Appending repository directory to system path.')
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))

from test.integration_tests import test_model
from test.integration_tests import test_solver
#from test.integration_tests import test_mincde
from integration_tests import test_model
from integration_tests import test_solver
#from integration_tests import test_mincde

modules = [
test_model,
Expand Down
2 changes: 1 addition & 1 deletion test/run_system_tests.py
Expand Up @@ -30,7 +30,7 @@
print('Running system tests in develop mode. Appending repository directory to system path.')
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))

from test.system_tests import test_compiler
from system_tests import test_compiler

modules = [
test_compiler
Expand Down

0 comments on commit 65e84de

Please sign in to comment.