Correct Exclude usage in FIB matching scenario

refs #3693

Change-Id: Ia9714b79a60e0d4c47f6135601827b6eb3ebb919
diff --git a/test_fib_matching/test_fib_matching.py b/test_fib_matching/test_fib_matching.py
index 0570f64..55c4788 100644
--- a/test_fib_matching/test_fib_matching.py
+++ b/test_fib_matching/test_fib_matching.py
@@ -205,14 +205,14 @@
         #Wait 100ms
         time.sleep(0.1)
 
-        #Invoke ndn-traffic to request ndn:/D MustBeFresh=yes Exclude=[,D]
+        #Invoke ndn-traffic to request ndn:/D MustBeFresh=yes Exclude=[...,D]
         #Fail if unanswered. Fail if Content is not "Z".
         clientConfigurationFile = os.path.abspath(
             "test_fib_matching/test-traffic-client-9.conf")
         self.startProcess("ndn-traffic-client-9",
             ["ndn-traffic", "-c 1", clientConfigurationFile],
             ("-> Starting Traffic Client 9 (Prefix=ndn:/D, MustBeFresh=Yes,"
-             " ExcludeBefore=D, ExpectedContent=Z)"))
+             " ExcludeRange=...,D, ExpectedContent=Z)"))
         self.waitForProcessCompletion("ndn-traffic-client-9", 10)
         self.checkAndReportFailure("ndn-traffic-client-9", "Traffic Client 9")
         print "-> Traffic Client 9 received data with Content=Z"
@@ -220,14 +220,14 @@
         #Wait 100ms
         time.sleep(0.1)
 
-        #Invoke ndn-traffic to request ndn:/D MustBeFresh=yes Exclude=[,E].
+        #Invoke ndn-traffic to request ndn:/D MustBeFresh=yes Exclude=[...,E]
         #Fail if unanswered. Fail if Content is not "Z".
         clientConfigurationFile = os.path.abspath(
             "test_fib_matching/test-traffic-client-10.conf")
         self.startProcess("ndn-traffic-client-10",
             ["ndn-traffic", "-c 1", clientConfigurationFile],
             ("-> Starting Traffic Client 10 (Prefix=ndn:/E, MustBeFresh=Yes,"
-             " ExcludeBefore=E, ExpectedContent=Z)"))
+             " ExcludeRange=...,E, ExpectedContent=Z)"))
         self.waitForProcessCompletion("ndn-traffic-client-10", 10)
         self.checkAndReportFailure("ndn-traffic-client-10", "Traffic Client 10")
         print "-> Traffic Client 10 received data with Content=Z"