Skip to content

Commit 1adfbe3

Browse files
committedSep 18, 2024
Fix test that checks the default cluster dir
1 parent 3fdfc6c commit 1adfbe3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎src/python_testing/TestSpecParsingSupport.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,8 @@ def test_build_xml_override(self):
272272
asserts.assert_equal(set(in_progress.keys())-set(tot_xml_clusters.keys()),
273273
set(), "There are some in_progress clusters that are not included in the TOT spec")
274274

275-
str_path = str(os.path.join(os.path.dirname(os.path.realpath(__file__)), '..', '..', 'data_model', 'master', 'clusters'))
275+
str_path = str(os.path.join(os.path.dirname(os.path.realpath(__file__)),
276+
'..', '..', 'data_model', 'in_progress', 'clusters'))
276277
string_override_check, problems = build_xml_clusters(str_path)
277278
asserts.assert_equal(string_override_check.keys(), self.spec_xml_clusters.keys(), "Mismatched cluster generation")
278279

0 commit comments

Comments
 (0)