From a6c5e2f5175e126caae48eb9e7ea98c7b557b49a Mon Sep 17 00:00:00 2001 From: mustafacc Date: Tue, 2 Jul 2024 20:04:27 -0700 Subject: [PATCH] fix workflow tests --- app/SiEPIC_TestCreator/tests/test_yaml.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/SiEPIC_TestCreator/tests/test_yaml.py b/app/SiEPIC_TestCreator/tests/test_yaml.py index 66e88d8..091293e 100644 --- a/app/SiEPIC_TestCreator/tests/test_yaml.py +++ b/app/SiEPIC_TestCreator/tests/test_yaml.py @@ -3,7 +3,7 @@ needs better testing to test each module, method, and class. """ -import siepic_testcreator +import SiEPIC_TestCreator ''' def test_gui(): @@ -20,13 +20,13 @@ def test_yaml_check(): import os filename = 'EBeam_heaters_mustafah_tests.yaml' yaml_file_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), filename) - siepic_testcreator.yamlcheck.yaml_check(yaml_file_path) + SiEPIC_TestCreator.yamlcheck.yaml_check(yaml_file_path) def test_sequence_runtime_check(): import os filename = 'EBeam_heaters_mustafah_tests.yaml' yaml_file_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), filename) - t = siepic_testcreator.yamlcheck.sequence_runtime_check(yaml_file_path) + t = SiEPIC_TestCreator.yamlcheck.sequence_runtime_check(yaml_file_path) assert t == 25 if __name__ == "__main__":