Skip to content

Commit

Permalink
Fix failing mypy tests on new version of Faker
Browse files Browse the repository at this point in the history
Looks like it is time to start pinning dev/test requirements.
  • Loading branch information
smsearcy committed May 7, 2024
1 parent 07fb8ce commit d60710a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/test_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
display_name="node1",
api_version="1.7",
grid_square="",
latitude=fake.latitude(),
longitude=fake.longitude(),
latitude=float(fake.latitude()),
longitude=float(fake.longitude()),
interfaces={
"wlan0": Interface("wlan0", fake.mac_address(), fake.ipv4_private()),
"eth0": Interface("eth0", fake.mac_address(), fake.ipv4_private()),
Expand All @@ -42,8 +42,8 @@
display_name="node2",
api_version="1.7",
grid_square="",
latitude=fake.latitude(),
longitude=fake.longitude(),
latitude=float(fake.latitude()),
longitude=float(fake.longitude()),
interfaces={
"wlan0": Interface("wlan0", fake.mac_address(), fake.ipv4_private()),
"eth0": Interface("eth0", fake.mac_address(), fake.ipv4_private()),
Expand All @@ -69,8 +69,8 @@
display_name="node3",
api_version="1.5",
grid_square="",
latitude=fake.latitude(),
longitude=fake.longitude(),
latitude=float(fake.latitude()),
longitude=float(fake.longitude()),
interfaces={
"wlan0": Interface("wlan0", fake.mac_address(), fake.ipv4_private()),
"eth0": Interface("eth0", fake.mac_address(), fake.ipv4_private()),
Expand All @@ -96,8 +96,8 @@
display_name="node4",
api_version="1.1",
grid_square="",
latitude=fake.latitude(),
longitude=fake.longitude(),
latitude=float(fake.latitude()),
longitude=float(fake.longitude()),
interfaces={
"wlan0": Interface("wlan0", fake.mac_address(), fake.ipv4_private()),
"eth0": Interface("eth0", fake.mac_address(), fake.ipv4_private()),
Expand Down

0 comments on commit d60710a

Please sign in to comment.