diff --git a/tests/test_pabot.py b/tests/test_pabot.py index d103ff76..ba8ccbbf 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 >= "7.0": + if ROBOT_VERSION >= "6.1": self.assertIn('schemaversion="4"', content) elif ROBOT_VERSION >= "5.0": self.assertIn('schemaversion="3"', content)