From fe07997f95a29b40619f858b7f5db6f147bfbe1c Mon Sep 17 00:00:00 2001 From: "Gustavo J. A. M. Carneiro" Date: Tue, 15 Sep 2009 12:58:31 +0100 Subject: [PATCH] Fix the example stop time to make regression tests pass again --- examples/simple-global-routing.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/simple-global-routing.cc b/examples/simple-global-routing.cc index edccb69ad..a75fa6111 100644 --- a/examples/simple-global-routing.cc +++ b/examples/simple-global-routing.cc @@ -159,7 +159,7 @@ main (int argc, char *argv[]) } NS_LOG_INFO ("Run Simulation."); - Simulator::Stop (Seconds (10)); + Simulator::Stop (Seconds (11)); Simulator::Run (); NS_LOG_INFO ("Done.");