File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1717# @pytest.mark.skip(reason="BUG 943")
1818def test_fail_to_create_master_domain_with_invalid_tags ():
1919 timestamp = str (time .time_ns ())
20- bad_tag = "*"
20+ bad_tag = (
21+ "a" * 300
22+ ) # Tag validation rules changed — '*' is no longer rejected
2123
2224 exec_failing_test_command (
2325 BASE_CMD
Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff 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" )
3940def test_fail_to_create_tag_shorter_than_three_char ():
4041 bad_tag = "aa"
4142 result = exec_failing_test_command (
You can’t perform that action at this time.
0 commit comments