[Lemon-commits] [lemon_svn] alpar: r1039 - hugo/branches/hugo++/src/test

Lemon SVN svn at lemon.cs.elte.hu
Mon Nov 6 20:42:53 CET 2006


Author: alpar
Date: Tue Aug 24 19:14:40 2004
New Revision: 1039

Modified:
   hugo/branches/hugo++/src/test/graph_test.cc

Log:
Bugfix (wrong check condition).


Modified: hugo/branches/hugo++/src/test/graph_test.cc
==============================================================================
--- hugo/branches/hugo++/src/test/graph_test.cc	(original)
+++ hugo/branches/hugo++/src/test/graph_test.cc	Tue Aug 24 19:14:40 2004
@@ -240,7 +240,7 @@
     check(e!=INVALID,"Wrong InEdge list linking.");
     ++e;
   }
-  check(e!=INVALID,"Wrong InEdge list linking.");
+  check(e==INVALID,"Wrong InEdge list linking.");
 }
 
 ///\file



More information about the Lemon-commits mailing list