We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2da7b52 commit 2d4c7cdCopy full SHA for 2d4c7cd
1 file changed
tests/test_api.py
@@ -1332,8 +1332,8 @@ def test_bad_auth(self):
1332
self.assertRaises(ValueError, shotgun_api3.Shotgun, server_url, None, api_key)
1333
self.assertRaises(ValueError, shotgun_api3.Shotgun, server_url, script_name, None)
1334
self.assertRaises(ValueError, shotgun_api3.Shotgun, server_url, script_name, api_key, login=login, password=password)
1335
- self.assertRaises(ValueError, shotgun_api3.Shotgun, login=login)
1336
- self.assertRaises(ValueError, shotgun_api3.Shotgun, password=password)
+ self.assertRaises(ValueError, shotgun_api3.Shotgun, server_url, login=login)
+ self.assertRaises(ValueError, shotgun_api3.Shotgun, server_url, password=password)
1337
self.assertRaises(ValueError, shotgun_api3.Shotgun, server_url, script_name, login=login, password=password)
1338
1339
# Test failed authentications
0 commit comments