Skip to content

Commit bec4882

Browse files
author
Geoff Bache
committed
Sort for deterministic behaviour across Python versions
1 parent 57b7f5c commit bec4882

File tree

1 file changed

+1
-1
lines changed
  • TestSelf/Mocking/CaptureMock/Console/EnvironmentOnly/TargetApp

1 file changed

+1
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22

33
import os
4-
for key, value in os.environ.items():
4+
for key, value in sorted(os.environ.items()):
55
if key.startswith("TEXTTEST_CAPTUREMOCK_"):
66
print(key, "=", value)

0 commit comments

Comments
 (0)