@@ -15,7 +15,7 @@ def test_delete_sub(self):
1515 "Accept" : "application/json" ,
1616 }
1717 response = self .client .open (
18- "/tagbase/api/v0.10.1 /tags/{tag_id}/subs/{sub_id}" .format (
18+ "/tagbase/api/v0.11.0 /tags/{tag_id}/subs/{sub_id}" .format (
1919 tag_id = 3 , sub_id = 3
2020 ),
2121 method = "DELETE" ,
@@ -32,7 +32,7 @@ def test_delete_tag(self):
3232 "Accept" : "application/json" ,
3333 }
3434 response = self .client .open (
35- "/tagbase/api/v0.10.1 /tags/{tag_id}" .format (tag_id = 3 ),
35+ "/tagbase/api/v0.11.0 /tags/{tag_id}" .format (tag_id = 3 ),
3636 method = "DELETE" ,
3737 headers = headers ,
3838 )
@@ -47,7 +47,7 @@ def test_delete_tags(self):
4747 "Accept" : "application/json" ,
4848 }
4949 response = self .client .open (
50- "/tagbase/api/v0.10.1 /tags" , method = "DELETE" , headers = headers
50+ "/tagbase/api/v0.11.0 /tags" , method = "DELETE" , headers = headers
5151 )
5252 self .assert500 (response , "Response body is : " + response .data .decode ("utf-8" ))
5353
@@ -62,7 +62,7 @@ def test_get_tag(self):
6262 "Accept" : "application/json" ,
6363 }
6464 response = self .client .open (
65- "/tagbase/api/v0.10.1 /tags/{tag_id}" .format (tag_id = 3 ),
65+ "/tagbase/api/v0.11.0 /tags/{tag_id}" .format (tag_id = 3 ),
6666 method = "GET" ,
6767 headers = headers ,
6868 )
@@ -77,7 +77,7 @@ def test_list_tags(self):
7777 "Accept" : "application/json" ,
7878 }
7979 response = self .client .open (
80- "/tagbase/api/v0.10.1 /tags" , method = "GET" , headers = headers
80+ "/tagbase/api/v0.11.0 /tags" , method = "GET" , headers = headers
8181 )
8282 self .assert500 (response , "Response body is : " + response .data .decode ("utf-8" ))
8383
@@ -94,7 +94,7 @@ def test_replace_tag(self):
9494 ("version" , 2 ),
9595 ]
9696 response = self .client .open (
97- "/tagbase/api/v0.10.1 /tags/{tag_id}/subs/{sub_id}" .format (
97+ "/tagbase/api/v0.11.0 /tags/{tag_id}/subs/{sub_id}" .format (
9898 tag_id = 3 , sub_id = 6
9999 ),
100100 method = "PUT" ,
0 commit comments