Skip to content

Commit

Permalink
removed assignment to unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
MKLepium committed Nov 21, 2023
1 parent 06fb27e commit cd58aff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tests/hopsworks/test_login.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,6 @@ def test_login_api_key_as_environ(self):
def test_login_newline_in_api_key(self):
try:
imaginaryApiKey = "ImaginaryApiKey\n"
project = hopsworks.login(api_key_value=imaginaryApiKey)
hopsworks.login(api_key_value=imaginaryApiKey)
except Exception as e:
self.assertNotIn(imaginaryApiKey.strip(), str(e))

0 comments on commit cd58aff

Please sign in to comment.