From: <lh...@us...> - 2008-08-07 14:09:49
|
Revision: 98 http://tinytim.svn.sourceforge.net/tinytim/?rev=98&view=rev Author: lheuer Date: 2008-08-07 13:14:50 +0000 (Thu, 07 Aug 2008) Log Message: ----------- - Again a test fix. :( Introduced a bug in the test while preparing tinyTiM 2 Modified Paths: -------------- tinytim/trunk/src/test/java/org/tinytim/TestTopicMerge.java Modified: tinytim/trunk/src/test/java/org/tinytim/TestTopicMerge.java =================================================================== --- tinytim/trunk/src/test/java/org/tinytim/TestTopicMerge.java 2008-08-06 14:18:42 UTC (rev 97) +++ tinytim/trunk/src/test/java/org/tinytim/TestTopicMerge.java 2008-08-07 13:14:50 UTC (rev 98) @@ -202,7 +202,7 @@ TopicName name = (TopicName) topic1.getTopicNames().iterator().next(); Topic reifier = null; for (Topic topic: _tm.getTopics()) { - if (!topic.equals(topic1) && !topic.equals(type)) { + if (!topic.equals(topic1)) { reifier = topic; break; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |