| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 807a2c9 commit b85c8fe
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2,6 +2,5 @@ Flask==1.1.2 | |||
| 2 | 2 | PyYAML>=4.2b1 | |
| 3 | 3 | python-http-client>=3.2.1 | |
| 4 | 4 | six==1.11.0 | |
| 5 | - pytest==3.8.2 | ||
| 6 | 5 | starkbank-ecdsa>=2.0.1 | |
| 7 | 6 | more-itertools==5.0.0 | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,9 +1,7 @@ | |||
| 1 | 1 | import json | |
| 2 | - import pytest | ||
| 3 | 2 | ||
| 4 | 3 | from sendgrid.helpers.endpoints.ip.unassigned import unassigned | |
| 5 | 4 | ||
| 6 | - | ||
| 7 | 5 | ret_json = '''[ { | |
| 8 | 6 | "ip": "167.89.21.3", | |
| 9 | 7 | "pools": [ | |
@@ -69,8 +67,7 @@ def make_data(): | |||
| 69 | 67 | ||
| 70 | 68 | ||
| 71 | 69 | def test_unassigned_ip_json(): | |
| 72 | - | ||
| 73 | - data = make_data() | ||
| 70 | + data = make_data() | ||
| 74 | 71 | ||
| 75 | 72 | as_json = True | |
| 76 | 73 | calculated = unassigned(get_all_ip(), as_json=as_json) | |
@@ -81,8 +78,7 @@ def test_unassigned_ip_json(): | |||
| 81 | 78 | ||
| 82 | 79 | ||
| 83 | 80 | def test_unassigned_ip_obj(): | |
| 84 | - | ||
| 85 | - data = make_data() | ||
| 81 | + data = make_data() | ||
| 86 | 82 | ||
| 87 | 83 | as_json = False | |
| 88 | 84 | calculated = unassigned(get_all_ip(), as_json=as_json) | |
| Back | FazBrowse Home | New Git URL |
0 commit comments