From a3579f7296579616e906801d465678d2ed1f981c Mon Sep 17 00:00:00 2001 From: Kurt Biery Date: Thu, 21 May 2026 12:04:40 -0500 Subject: [PATCH] Modified the integtest to use the new utility_functions module from the integrationtest repo instead of the basic_checks module. --- integtest/listrev_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integtest/listrev_test.py b/integtest/listrev_test.py index a611967..ffd7ea4 100755 --- a/integtest/listrev_test.py +++ b/integtest/listrev_test.py @@ -5,8 +5,8 @@ import copy import integrationtest.log_file_checks as log_file_checks -import integrationtest.basic_checks as basic_checks import integrationtest.data_classes as data_classes +import integrationtest.utility_functions as utility_functions from integrationtest.verbosity_helper import IntegtestVerbosityLevels import functools @@ -81,7 +81,7 @@ def test_dunerc_success(run_dunerc, caplog): # check for run control success, problems during pytest setup, etc. - basic_checks.basic_checks(run_dunerc, caplog, print_test_name=True) + utility_functions.basic_checks(run_dunerc, caplog, print_test_name=True) def test_log_files(run_dunerc):