Skip to content

Commit ae5a942

Browse files
committed
Fix CI
1 parent 327f563 commit ae5a942

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_embed.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -315,9 +315,9 @@ def test_pre_initialization_sys_options(self):
315315
print(out)
316316
print(err)
317317
expected_output = (
318-
"sys.warnoptions: ['once', 'module', 'default']\n"
318+
"sys.warnoptions: ['default', 'once', 'module']\n"
319319
"sys._xoptions: {'not_an_option': '1', 'also_not_an_option': '2'}\n"
320-
"warnings.filters[:3]: ['default', 'module', 'once']\n"
320+
"warnings.filters[:3]: ['module', 'once', 'default']\n"
321321
)
322322
self.assertIn(expected_output, out)
323323
self.assertEqual(err, '')

0 commit comments

Comments
 (0)