فهرست منبع

Fix int casting in 10K children test; some more g->gr.

Stefano Cossu 7 سال پیش
والد
کامیت
9888eb2f48
2فایلهای تغییر یافته به همراه5 افزوده شده و 6 حذف شده
  1. 1 1
      tests/10K_children.py
  2. 4 5
      tests/endpoints/test_ldp.py

+ 1 - 1
tests/10K_children.py

@@ -9,7 +9,7 @@ default_n = 10000
 sys.stdout.write('How many children? [{}] >'.format(default_n))
 choice = input().lower()
 
-n = choice or default_n
+n = int(choice) or default_n
 
 # Generate 10,000 children of root node.
 

+ 4 - 5
tests/endpoints/test_ldp.py

@@ -34,7 +34,6 @@ class TestLdp:
 
         assert ldp_resp.status_code == 200
         assert rest_resp.status_code == 200
-        #assert ldp_resp.data == rest_resp.data
 
 
     def test_put_empty_resource(self, random_uuid):
@@ -95,15 +94,15 @@ class TestLdp:
         self.client.put(path1)
 
         cont1_data = self.client.get('/ldp').data
-        g1 = Graph().parse(data=cont1_data, format='turtle')
-        assert g1[ URIRef(g.webroot + '/') : nsc['ldp'].contains : \
+        gr1 = Graph().parse(data=cont1_data, format='turtle')
+        assert gr1[ URIRef(g.webroot + '/') : nsc['ldp'].contains : \
                 URIRef(g.webroot + '/' + uuid1) ]
 
         self.client.put(path2)
 
         cont2_data = self.client.get(path1).data
-        g1 = Graph().parse(data=cont2_data, format='turtle')
-        assert g1[ URIRef(g.webroot + '/' + uuid1) : \
+        gr2 = Graph().parse(data=cont2_data, format='turtle')
+        assert gr2[ URIRef(g.webroot + '/' + uuid1) : \
                 nsc['ldp'].contains : \
                 URIRef(g.webroot + '/' + uuid2) ]