Skip to content

Commit

Permalink
remove refresh token test
Browse files Browse the repository at this point in the history
  • Loading branch information
parkererickson-tg committed Oct 3, 2024
1 parent 1512f27 commit 70dc538
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_pyTigerGraphAuthAsync.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ async def test_05_getToken(self):
token = await self.conn.getToken(res["secret5"])
self.assertIsInstance(token, tuple)
await self.conn.dropSecret("secret5")

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

'''
async def test_07_deleteToken(self):
await self.conn.dropSecret("secret7", ignoreErrors=True)
res = await self.conn.createSecret("secret7", True)
Expand Down

0 comments on commit 70dc538

Please sign in to comment.