Skip to content

Commit b8f4782

Browse files
committed
fix_failing_tests
1 parent 5612fe9 commit b8f4782

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

tests/integration/domains/test_domains_tags.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# @pytest.mark.skip(reason="BUG 943")
1818
def test_fail_to_create_master_domain_with_invalid_tags():
1919
timestamp = str(time.time_ns())
20-
bad_tag = "*"
20+
bad_tag = "a" * 300 # Tag validation rules changed — '*' is no longer rejected
2121

2222
exec_failing_test_command(
2323
BASE_CMD

tests/integration/lke/test_lke_enterprise.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def test_create_lke_enterprise(monkeypatch: MonkeyPatch):
4848
"--tier",
4949
"enterprise",
5050
"--k8s_version",
51-
"v1.31.1+lke1",
51+
"v1.31.1+lke4",
5252
"--node_pools.type",
5353
"g6-standard-6",
5454
"--node_pools.count",
@@ -74,7 +74,7 @@ def test_create_lke_enterprise(monkeypatch: MonkeyPatch):
7474
assert_headers_in_lines(headers, output.splitlines())
7575

7676
assert label in output
77-
assert "v1.31.1+lke1" in output
77+
assert "v1.31.1+lke4" in output
7878
assert "enterprise" in output
7979

8080
delete_target_id(

tests/integration/tags/test_tags.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ def test_view_unique_tag(test_tag_instance):
3636
assert test_tag_instance in result
3737

3838

39+
@pytest.mark.skip(reason="BUG = TPT-3650")
3940
def test_fail_to_create_tag_shorter_than_three_char():
4041
bad_tag = "aa"
4142
result = exec_failing_test_command(

0 commit comments

Comments
 (0)