change case

This commit is contained in:
Hongze Cheng 2024-12-27 11:35:49 +08:00
parent 0163948679
commit 5ab873832d
1 changed files with 5 additions and 5 deletions

View File

@ -66,7 +66,7 @@ class TDTestCase(TBase):
"dbinfo": {{ "dbinfo": {{
"name": "{self.dbName}", "name": "{self.dbName}",
"drop": "yes", "drop": "yes",
"vgroups": 1, "vgroups": 5,
"duration": "10d", "duration": "10d",
"wal_retention_period": 0, "wal_retention_period": 0,
"replica": 3, "replica": 3,
@ -86,7 +86,7 @@ class TDTestCase(TBase):
"non_stop_mode": "no", "non_stop_mode": "no",
"line_protocol": "line", "line_protocol": "line",
"insert_rows": 10000, "insert_rows": 10000,
"interlace_rows": 1, "interlace_rows": 0,
"insert_interval": 0, "insert_interval": 0,
"partial_col_num": 0, "partial_col_num": 0,
"disorder_ratio": 0, "disorder_ratio": 0,
@ -155,7 +155,7 @@ class TDTestCase(TBase):
"dbinfo": {{ "dbinfo": {{
"name": "{self.dbName}", "name": "{self.dbName}",
"drop": "no", "drop": "no",
"vgroups": 1, "vgroups": 5,
"duration": "10d", "duration": "10d",
"wal_retention_period": 0, "wal_retention_period": 0,
"replica": 3, "replica": 3,
@ -175,7 +175,7 @@ class TDTestCase(TBase):
"non_stop_mode": "no", "non_stop_mode": "no",
"line_protocol": "line", "line_protocol": "line",
"insert_rows": 10000, "insert_rows": 10000,
"interlace_rows": 1, "interlace_rows": 0,
"insert_interval": 0, "insert_interval": 0,
"partial_col_num": 0, "partial_col_num": 0,
"disorder_ratio": 0, "disorder_ratio": 0,
@ -257,7 +257,7 @@ class TDTestCase(TBase):
def stop(self): def stop(self):
tdSql.close() tdSql.close()
tdLog.success("%s successfully executed" % __file__) tdLog.success(f"{__file__} successfully executed")
tdCases.addLinux(__file__, TDTestCase()) tdCases.addLinux(__file__, TDTestCase())