Skip to content

Commit 945b6d6

Browse files
committed
Update git submodule and fix tests
1 parent 927aa5b commit 945b6d6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

tests/data

Submodule data updated 63 files

tests/database_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,13 +154,13 @@ def test_connection_type(self) -> None:
154154
record, eval(repr(record)), "ConnectionType repr can be eval'd"
155155
)
156156

157-
self.assertEqual(record.connection_type, "Cable/DSL")
157+
self.assertEqual(record.connection_type, "Cellular")
158158
self.assertEqual(record.ip_address, ip_address)
159159
self.assertEqual(record.network, ipaddress.ip_network("1.0.1.0/24"))
160160

161161
self.assertRegex(
162162
str(record),
163-
r"ConnectionType\(\{.*Cable/DSL.*\}\)",
163+
r"ConnectionType\(\{.*Cellular.*\}\)",
164164
"ConnectionType str representation is reasonable",
165165
)
166166

tests/webservice_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class TestBaseClient(unittest.TestCase):
4747
"traits": {
4848
"ip_address": "1.2.3.4",
4949
"is_anycast": True,
50-
"network": "1.2.3.0/24"
50+
"network": "1.2.3.0/24",
5151
},
5252
}
5353

0 commit comments

Comments
 (0)