diff options
| author | Maxim Yurchuk <[email protected]> | 2024-11-25 10:18:51 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-11-25 13:18:51 +0300 |
| commit | 199d47d2f2c5da95681170e1b97e1784602a6e81 (patch) | |
| tree | cfd3b9a25c7d92a452da6f994264ea882bb2bcbb | |
| parent | afbc266232aa2f58d2c41dd93025b9094490b24b (diff) | |
Accept True in stability test (#11932)
| -rw-r--r-- | ydb/tests/stability/ydb/test_stability.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/tests/stability/ydb/test_stability.py b/ydb/tests/stability/ydb/test_stability.py index 4dfce0f5107..0206de114aa 100644 --- a/ydb/tests/stability/ydb/test_stability.py +++ b/ydb/tests/stability/ydb/test_stability.py @@ -45,7 +45,7 @@ def kikimr_driver_path(): def is_deploy_cluster(): - return yatest.common.get_param("kikimr.ci.deploy_cluster", "false") == "true" + return yatest.common.get_param("kikimr.ci.deploy_cluster", "false").lower() == "true" class TestSetupForStability(object): |
