Skip to content

Commit 4cb3315

Browse files
committed
fix ci
1 parent c7e367c commit 4cb3315

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/env_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def test_user(self):
2525
self.assertEqual('runner', USER)
2626
self.assertEqual('root', os.getlogin())
2727
elif is_linux():
28-
self.assertRaisesRegex(OSError,r"\[Errno 25\] Inappropriate ioctl for device", os.getlogin)
28+
self.assertRaisesRegex(OSError,r"[Errno -25] Unknown error -25", os.getlogin)
2929
elif is_windows():
3030
self.assertEqual(USER, os.getlogin())
3131
else:

tests/http_request_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def test_bearer(self):
3737
assert response['authenticated'] == True
3838
assert response['token'] == token
3939

40-
def test_get_with_load(self):
40+
def test_get_with_query_params(self):
4141
url = http_bin + 'get'
4242
request = Request()
4343
payload = {'things': 2, 'total': 25}

0 commit comments

Comments
 (0)