Skip to content

Commit

Permalink
disable refreshtoken test
Browse files Browse the repository at this point in the history
  • Loading branch information
parkererickson-tg committed Oct 9, 2024
1 parent 85adacc commit 3c9ab70
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_pyTigerGraphAuth.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ def test_05_getToken(self):
self.assertIsInstance(token, tuple)
self.conn.dropSecret("secret5")

'''
def test_06_refreshToken(self):
# TG 4.x does not allow refreshing tokens
if self.conn._versionGreaterThan4_0():
Expand All @@ -83,7 +84,7 @@ def test_06_refreshToken(self):
refreshed = self.conn.refreshToken(res["secret6"], token[0])
self.assertIsInstance(refreshed, tuple)
self.conn.dropSecret("secret6")

'''
def test_07_deleteToken(self):
res = self.conn.createSecret("secret7", True)
token = self.conn.getToken(res["secret7"])
Expand Down

0 comments on commit 3c9ab70

Please sign in to comment.