@@ -47,7 +47,7 @@ def test_get_config_by_tag_1(admin_auth_headers, default_org_id):
4747 headers = admin_auth_headers ,
4848 )
4949 data = r .json ()
50- assert sorted (data ) == ["tag-1" , "tag-2" , "wr-test-1" , "wr-test-2" ]
50+ assert sorted (data ) == ["canceled" , " tag-1" , "tag-2" , "wr-test-1" , "wr-test-2" ]
5151
5252
5353def test_get_config_by_tag_counts_1 (admin_auth_headers , default_org_id ):
@@ -59,6 +59,7 @@ def test_get_config_by_tag_counts_1(admin_auth_headers, default_org_id):
5959 assert data == {
6060 "tags" : [
6161 {"tag" : "wr-test-2" , "count" : 2 },
62+ {"tag" : "canceled" , "count" : 1 },
6263 {"tag" : "tag-1" , "count" : 1 },
6364 {"tag" : "tag-2" , "count" : 1 },
6465 {"tag" : "wr-test-1" , "count" : 1 },
@@ -91,6 +92,7 @@ def test_get_config_by_tag_2(admin_auth_headers, default_org_id):
9192 )
9293 data = r .json ()
9394 assert sorted (data ) == [
95+ "canceled" ,
9496 "tag-0" ,
9597 "tag-1" ,
9698 "tag-2" ,
@@ -109,6 +111,7 @@ def test_get_config_by_tag_counts_2(admin_auth_headers, default_org_id):
109111 assert data == {
110112 "tags" : [
111113 {"tag" : "wr-test-2" , "count" : 2 },
114+ {"tag" : "canceled" , "count" : 1 },
112115 {"tag" : "tag-0" , "count" : 1 },
113116 {"tag" : "tag-1" , "count" : 1 },
114117 {"tag" : "tag-2" , "count" : 1 },
0 commit comments