aboutsummaryrefslogtreecommitdiffstats
path: root/_pytest/test_everything.py
diff options
context:
space:
mode:
Diffstat (limited to '_pytest/test_everything.py')
-rw-r--r--_pytest/test_everything.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/_pytest/test_everything.py b/_pytest/test_everything.py
index e1100d4..de22d79 100644
--- a/_pytest/test_everything.py
+++ b/_pytest/test_everything.py
@@ -12,7 +12,7 @@ def test_everything(realish_eventrouter, mock_websocket):
datafiles = glob.glob("_pytest/data/websocket/*.json")
- for fname in datafiles:
+ for fname in sorted(datafiles):
data = json.loads(open(fname, 'r').read())
socket.add(data)
eventrouter.receive_ws_callback(t)