Skip to content

Commit

Permalink
Fixed wrong test for token auth
Browse files Browse the repository at this point in the history
  • Loading branch information
Ostico committed Feb 9, 2015
1 parent 2523742 commit 373c9b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_token_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def setUp(self):
client = pyorient.OrientDB("localhost", 2424)
client.connect("root", "root")
if client._connection.protocol < 26:
unittest.skip("Token not supported in OrientDB < 2.0")
self.skipTest("Token not supported in OrientDB < 2.0")

def testPrepareConnection(self):
global old_token
Expand Down

0 comments on commit 373c9b9

Please sign in to comment.