Skip to content

Commit c8ad662

Browse files
Apply suggestions from code review
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent 6296187 commit c8ad662

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/cases/24-Users/test_user_token.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def login_token(self, token, options=""):
115115
]
116116

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

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

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

0 commit comments

Comments
 (0)