File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,5 @@ Flask==1.1.2
22PyYAML >= 4.2b1
33python-http-client >= 3.2.1
44six == 1.11.0
5- pytest == 3.8.2
65starkbank-ecdsa >= 2.0.1
76more-itertools == 5.0.0
Original file line number Diff line number Diff line change 11import json
2- import pytest
32
43from sendgrid .helpers .endpoints .ip .unassigned import unassigned
54
6-
75ret_json = '''[ {
86 "ip": "167.89.21.3",
97 "pools": [
@@ -69,8 +67,7 @@ def make_data():
6967
7068
7169def test_unassigned_ip_json ():
72-
73- data = make_data ()
70+ data = make_data ()
7471
7572 as_json = True
7673 calculated = unassigned (get_all_ip (), as_json = as_json )
@@ -81,8 +78,7 @@ def test_unassigned_ip_json():
8178
8279
8380def test_unassigned_ip_obj ():
84-
85- data = make_data ()
81+ data = make_data ()
8682
8783 as_json = False
8884 calculated = unassigned (get_all_ip (), as_json = as_json )
You can’t perform that action at this time.
0 commit comments