tests: Change to updated naming conventions

Change-Id: I9351c669282c3c02fd533237489beeb10fe7d15e
Refs: #2497
diff --git a/tests/wscript b/tests/wscript
index c2cc536..7cfe4d2 100644
--- a/tests/wscript
+++ b/tests/wscript
@@ -62,8 +62,8 @@
             target='../unit-tests-daemon',
             features='cxx cxxprogram',
             source=bld.path.ant_glob(['daemon/**/*.cpp'],
-                                     excl=['daemon/face/ethernet.cpp',
-                                           'daemon/face/unix-*.cpp',
+                                     excl=['daemon/face/ethernet*.cpp',
+                                           'daemon/face/unix*.cpp',
                                            'daemon/face/websocket*.cpp']),
             use='daemon-objects unit-tests-base unit-tests-main',
             includes='.',
@@ -71,10 +71,10 @@
           )
 
         if bld.env['HAVE_LIBPCAP']:
-            unit_tests_nfd.source += bld.path.ant_glob('daemon/face/ethernet.cpp')
+            unit_tests_nfd.source += bld.path.ant_glob('daemon/face/ethernet*.cpp')
 
         if bld.env['HAVE_UNIX_SOCKETS']:
-            unit_tests_nfd.source += bld.path.ant_glob('daemon/face/unix-*.cpp')
+            unit_tests_nfd.source += bld.path.ant_glob('daemon/face/unix*.cpp')
 
         if bld.env['HAVE_WEBSOCKET']:
             unit_tests_nfd.source += bld.path.ant_glob('daemon/face/websocket*.cpp')