From 1a27f5608431bef143e6dd9a67b3e66f46175aec Mon Sep 17 00:00:00 2001 From: Mikko Korpela Date: Sat, 30 Nov 2024 11:58:37 +0200 Subject: [PATCH] all fixed (now) --- tests/test_pabot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_pabot.py b/tests/test_pabot.py index 0d7ca4f0..d103ff76 100644 --- a/tests/test_pabot.py +++ b/tests/test_pabot.py @@ -1302,7 +1302,7 @@ def test_merge_one_run_with_and_without_legacyoutput(self): self.assertTrue(output, "merge_one_run returned empty string") # Verify we got output path with open(output, 'r') as f: content = f.read() - if ROBOT_VERSION >= "6.0": + if ROBOT_VERSION >= "7.0": self.assertIn('schemaversion="4"', content) elif ROBOT_VERSION >= "5.0": self.assertIn('schemaversion="3"', content)