@@ -44,7 +44,7 @@ def test_dns_records():
4444 dns_content3 = 'temp pytest element 3'
4545 print ('dns_record: %s' % (dns_name ))
4646
47- def test_dns_records_get ():
47+ def test_dns_records_get1 ():
4848 # GET
4949 params = {'name' :dns_name + '.' + zone_name , 'match' :'all' , 'type' :dns_type }
5050 dns_results = cf .zones .dns_records .get (zone_id , params = params )
@@ -65,7 +65,7 @@ def test_dns_records_post():
6565 assert len (dns_id ) == 32
6666 print ('dns_record: %s %s' % (dns_name , dns_id ))
6767
68- def test_dns_records_get ():
68+ def test_dns_records_get2 ():
6969 # GET
7070 params = {'name' :dns_name + '.' + zone_name , 'match' :'all' , 'type' :dns_type }
7171 dns_results = cf .zones .dns_records .get (zone_id , params = params )
@@ -74,7 +74,7 @@ def test_dns_records_get():
7474 assert dns_results [0 ]['type' ] == dns_type
7575 assert dns_results [0 ]['content' ] == dns_content1
7676
77- def test_dns_records_get ():
77+ def test_dns_records_get3 ():
7878 # GET
7979 dns_result = cf .zones .dns_records .get (zone_id , dns_id )
8080 assert dns_result ['name' ] == dns_name + '.' + zone_name
@@ -97,7 +97,7 @@ def test_dns_records_put():
9797 assert dns_result ['type' ] == dns_type
9898 assert dns_result ['content' ] == dns_content3
9999
100- def test_dns_records_get ():
100+ def test_dns_records_get4 ():
101101 # GET
102102 dns_result = cf .zones .dns_records .get (zone_id , dns_id )
103103 assert dns_result ['name' ] == dns_name + '.' + zone_name
@@ -109,7 +109,7 @@ def test_dns_records_delete():
109109 dns_result = cf .zones .dns_records .delete (zone_id , dns_id )
110110 assert dns_result ['id' ] == dns_id
111111
112- def test_dns_records_get ():
112+ def test_dns_records_get5 ():
113113 # GET
114114 params = {'name' :dns_name + '.' + zone_name , 'match' :'all' , 'type' :dns_type }
115115 dns_results = cf .zones .dns_records .get (zone_id , params = params )
0 commit comments