From f9d00bc8bfa38d8dff4447b8834220b4bd421b45 Mon Sep 17 00:00:00 2001 From: adamdunkels Date: Mon, 19 Oct 2009 20:47:28 +0000 Subject: [PATCH] Reduced the number of packets that needs to be received --- tools/cooja/contiki_tests/rime_abc.csc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cooja/contiki_tests/rime_abc.csc b/tools/cooja/contiki_tests/rime_abc.csc index 60ed7b89b..02c9983d5 100644 --- a/tools/cooja/contiki_tests/rime_abc.csc +++ b/tools/cooja/contiki_tests/rime_abc.csc @@ -116,7 +116,7 @@ while (true) { nr_packets[id]++; //log.log("Node " + id + " received " + nr_packets[id] + " messages\n"); - if (nr_packets[1] >= 10 && nr_packets[2] >= 10) { + if (nr_packets[1] >= 4 && nr_packets[2] >= 4) { log.log("Node 1: " + nr_packets[1] + ".\nNode 2: " + nr_packets[2] + ".\n"); log.testOK(); /* Report test success */ }