1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-13 20:08:55 +00:00

Fix tests on Unix for interfaces

This commit is contained in:
Julien Duponchelle 2016-09-28 14:34:13 +02:00
parent c38dd004b8
commit 79d376652c
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -32,7 +32,8 @@ def test_interfaces():
assert "name" in interface
assert "ip_address" in interface
assert "mac_address" in interface
assert "netcard" in interface
if sys.platform.startswith("win"):
assert "netcard" in interface
assert "type" in interface
assert "netmask" in interface