Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/cases/24-Users/test_user_token.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def login_token(self, token, options=""):
]

# arg
command = f"{taosFile} -q{token} {options} -s 'show tokens;' "
command = f'{taosFile} -q{token} {options} -s "show tokens;" '
rlist = etool.runRetList(command, checkRun=True, show= True)
self.checkManyString(rlist, success)

Expand All @@ -125,7 +125,7 @@ def login_token_fail(self, token, options=""):
failed = "Connect with token ...... [ FAILED ]"

# arg
command = f"{taosFile} -q{token} {options} -s 'show tokens;' "
command = f'{taosFile} -q{token} {options} -s "show tokens;" '
rlist = etool.runRetList(command, checkRun=False, show= True)
self.checkManyString(rlist, failed)

Expand Down
Loading