From 98f12048c55b87de4049ec920c81a81672e1707f Mon Sep 17 00:00:00 2001 From: Christopher Sherman Date: Thu, 1 Feb 2024 15:08:16 -0800 Subject: [PATCH] Fixing machine search bug --- geos_ats_package/geos_ats/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/geos_ats_package/geos_ats/main.py b/geos_ats_package/geos_ats/main.py index 5466012..42e43c1 100644 --- a/geos_ats_package/geos_ats/main.py +++ b/geos_ats_package/geos_ats/main.py @@ -5,7 +5,7 @@ import subprocess import time import logging -from geos_ats import command_line_parsers, test_builder +from geos_ats import command_line_parsers test_actions = ( "run", "rerun", "check", "continue" ) report_actions = ( "run", "rerun", "report", "continue" ) @@ -352,7 +352,7 @@ def main(): else: ats.AtsTest.glue( testcases="all" ) - from geos_ats import ( common_utilities, suite_settings, test_case, test_steps ) + from geos_ats import ( common_utilities, suite_settings, test_case, test_steps, test_builder ) # Set ats options append_geos_ats_summary( ats.manager )