Skip to content

Commit 0976338

Browse files
authored
Update test_settings_profile
1 parent dc08774 commit 0976338

File tree

1 file changed

+3
-3
lines changed
  • tests/integration/test_settings_profile

1 file changed

+3
-3
lines changed

tests/integration/test_settings_profile/test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -464,22 +464,22 @@ def test_show_profiles():
464464
)
465465

466466
query_expected_response = [
467-
"CREATE SETTINGS PROFILE `default` SETTINGS min_os_cpu_wait_time_ratio_to_throw = 10., max_os_cpu_wait_time_ratio_to_throw = 20.\n",
467+
"CREATE SETTINGS PROFILE `default`\n",
468468
]
469469
assert (
470470
instance.query("SHOW CREATE SETTINGS PROFILE default")
471471
in query_expected_response
472472
)
473473

474474
query_expected_response = [
475-
"CREATE SETTINGS PROFILE `default` SETTINGS min_os_cpu_wait_time_ratio_to_throw = 10., max_os_cpu_wait_time_ratio_to_throw = 20.\n"
475+
"CREATE SETTINGS PROFILE `default`\n"
476476
"CREATE SETTINGS PROFILE `readonly` SETTINGS readonly = 1\n"
477477
"CREATE SETTINGS PROFILE `xyz`\n",
478478
]
479479
assert instance.query("SHOW CREATE PROFILES") in query_expected_response
480480

481481
expected_access = (
482-
"CREATE SETTINGS PROFILE `default` SETTINGS min_os_cpu_wait_time_ratio_to_throw = 10., max_os_cpu_wait_time_ratio_to_throw = 20.\n"
482+
"CREATE SETTINGS PROFILE `default`\n"
483483
"CREATE SETTINGS PROFILE `readonly` SETTINGS readonly = 1\n"
484484
"CREATE SETTINGS PROFILE `xyz`\n"
485485
)

0 commit comments

Comments
 (0)