ndn-traffic -> ndn-traffic-client

Change-Id: I851dd8d6abbf34795b265bd25576190c9cffd91b
diff --git a/test_unixface/test_unixface.py b/test_unixface/test_unixface.py
index 171f850..a081076 100644
--- a/test_unixface/test_unixface.py
+++ b/test_unixface/test_unixface.py
@@ -26,7 +26,7 @@
         ret = subprocess.call(["./unix-face-test.sh"], shell=True)
         print "Test script return value:", ret
         errormsg = {
-            1 : "ndn-traffic client does not end normally. See logs/client.log",
+            1 : "ndn-traffic-client did not end normally. See logs/client.log",
             2 : "Data loss detected",
         }
         if (ret != 0):
diff --git a/test_unixface/unix-face-test.sh b/test_unixface/unix-face-test.sh
index cfc5d67..bdce985 100755
--- a/test_unixface/unix-face-test.sh
+++ b/test_unixface/unix-face-test.sh
@@ -9,12 +9,12 @@
 ndn-traffic-server NDNTrafficServer.conf > logs/server.log 2>&1 &
 sleep 2
 echo "Sending interests..."
-ndn-traffic -i 100 -c 100 NDNTrafficClient.conf > logs/client.log 2>&1
+ndn-traffic-client -i 100 -c 100 NDNTrafficClient.conf > logs/client.log 2>&1
 clean_up
 output=$(grep "Total Interest Loss" logs/client.log | head -1 | cut -d= -f2 | cut -d' ' -f2 | cut -d% -f1)
 if [[ -z $output ]]
 then
-    echo "ndn-traffic client does not end normally. See logs/client.log"
+    echo "ndn-traffic-client did not end normally. See logs/client.log"
     exit 1
 fi
 if [[ $output != 0?(.+(0)) ]]