diff --git a/scapy/arch/windows/__init__.py b/scapy/arch/windows/__init__.py
index 48893c2f47b5c37d734e60f0091bc0d294953a29..b13e7807156b4a61189fa2c59508427ec1bb08d2 100755
--- a/scapy/arch/windows/__init__.py
+++ b/scapy/arch/windows/__init__.py
@@ -246,7 +246,7 @@ class WinProgPath(ConfClass):
                                env="SystemRoot")
         if self.wireshark:
             manu_path = load_manuf(os.path.sep.join(self.wireshark.split(os.path.sep)[:-1])+os.path.sep+"manuf")
-            scapy.data.MANUFDB = conf.manufdb = MANUFDB = manu_path
+            scapy.data.MANUFDB = conf.manufdb = manu_path
         
         self.os_access = (self.powershell is not None) or (self.cscript is not None)
 
diff --git a/test/linux.uts b/test/linux.uts
index 23e1802ad14d75736f204ea1d67223bbf86038c1..22414465d56aa43b3b33d0979fb0a1eacfc12e78 100644
--- a/test/linux.uts
+++ b/test/linux.uts
@@ -54,12 +54,15 @@ assert(os.system(IPTABLE_RULE % ('D', SECDEV_IP4)) == 0)
 
 assert(success)
 
-= Supersocket _flush_fd
-~ needs_root linux
-
-import select
-
-from scapy.arch.linux import _flush_fd
-socket = conf.L2listen()
-select.select([socket],[],[],2)
-_flush_fd(socket.ins)
+# TODO: fix this test (randomly stuck)
+# ex: https://travis-ci.org/secdev/scapy/jobs/247473497
+
+#= Supersocket _flush_fd
+#~ needs_root linux
+#
+#import select
+#
+#from scapy.arch.linux import _flush_fd
+#socket = conf.L2listen()
+#select.select([socket],[],[],2)
+#_flush_fd(socket.ins)
diff --git a/test/regression.uts b/test/regression.uts
index 126a1d03b68248bd6b80fe4aeeb42d6f2e1047b3..0dc1fc34bde41a62c1592e8e882edc1d018821af 100644
--- a/test/regression.uts
+++ b/test/regression.uts
@@ -331,8 +331,8 @@ if not WINDOWS:
 
 = Test manuf DB methods
 ~ manufdb
-assert(MANUFDB._resolve_MAC("00:00:0F:01:02:03") == "Next:01:02:03")
-assert(MANUFDB._get_short_manuf("00:00:0F:01:02:03") == "Next")
+assert(conf.manufdb._resolve_MAC("00:00:0F:01:02:03") == "Next:01:02:03")
+assert(conf.manufdb._get_short_manuf("00:00:0F:01:02:03") == "Next")
 assert(in6_addrtovendor("fe80::0200:0fff:fe01:0203").lower().startswith("next"))
 
 = Test utility functions - network related