Skip to content
Snippets Groups Projects
Commit 8666c131 authored by gpotter2's avatar gpotter2
Browse files

Only test ManuFDB when available

parent bc283f01
No related branches found
No related tags found
No related merge requests found
...@@ -656,11 +656,17 @@ send_and_sniff(Ether()/IP(dst="secdev.org")/ICMP()) ...@@ -656,11 +656,17 @@ send_and_sniff(Ether()/IP(dst="secdev.org")/ICMP())
= __repr__ = __repr__
conf.manufdb if conf.manufdb:
conf.manufdb
else:
True
= check _resolve_MAC = check _resolve_MAC
assert conf.manufdb._resolve_MAC("00:00:63") == "HP" if conf.manufdb:
assert conf.manufdb._resolve_MAC("00:00:63") == "HP"
else:
True
############ ############
############ ############
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment