diff options
Diffstat (limited to 'unittests/windowstests.py')
-rw-r--r-- | unittests/windowstests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/windowstests.py b/unittests/windowstests.py index 1e5964c..bd75c74 100644 --- a/unittests/windowstests.py +++ b/unittests/windowstests.py @@ -318,7 +318,7 @@ class WindowsTests(BasePlatformTests): def sanitycheck_vscrt(vscrt): checks = self.get_meson_log_sanitychecks() - self.assertTrue(len(checks) > 0) + self.assertGreater(len(checks), 0) for check in checks: self.assertIn(vscrt, check) |