Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@ Flask==1.1.2
PyYAML>=4.2b1
python-http-client>=3.2.1
six==1.11.0
pytest==3.8.2
starkbank-ecdsa>=2.0.1
more-itertools==5.0.0
8 changes: 2 additions & 6 deletions test/unit/test_unassigned.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import json
import pytest

from sendgrid.helpers.endpoints.ip.unassigned import unassigned


ret_json = '''[ {
"ip": "167.89.21.3",
"pools": [
Expand Down Expand Up @@ -69,8 +67,7 @@ def make_data():


def test_unassigned_ip_json():

data = make_data()
data = make_data()

as_json = True
calculated = unassigned(get_all_ip(), as_json=as_json)
Expand All @@ -81,8 +78,7 @@ def test_unassigned_ip_json():


def test_unassigned_ip_obj():

data = make_data()
data = make_data()

as_json = False
calculated = unassigned(get_all_ip(), as_json=as_json)
Expand Down