Author: simonetripodi
Date: Wed Mar  7 23:19:12 2012
New Revision: 1298202

URL: http://svn.apache.org/viewvc?rev=1298202&view=rev
Log:
fixed method invocation

Modified:
    
commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/builder/GraphBuilderTestCase.java

Modified: 
commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/builder/GraphBuilderTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/builder/GraphBuilderTestCase.java?rev=1298202&r1=1298201&r2=1298202&view=diff
==============================================================================
--- 
commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/builder/GraphBuilderTestCase.java
 (original)
+++ 
commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/builder/GraphBuilderTestCase.java
 Wed Mar  7 23:19:12 2012
@@ -19,6 +19,7 @@ package org.apache.commons.graph.builder
  * under the License.
  */
 
+import static org.apache.commons.graph.CommonsGraph.newUndirectedMutableGraph;
 import static org.junit.Assert.assertEquals;
 
 import org.apache.commons.graph.model.BaseLabeledVertex;
@@ -66,7 +67,7 @@ public final class GraphBuilderTestCase
         // ... and using the EDSL :)
 
         UndirectedMutableGraph<BaseLabeledVertex, 
BaseLabeledWeightedEdge<Double>> actual =
-        newUndirectedMutableWeightedGraph( new 
AbstractGraphConnection<BaseLabeledVertex, BaseLabeledWeightedEdge<Double>>()
+        newUndirectedMutableGraph( new 
AbstractGraphConnection<BaseLabeledVertex, BaseLabeledWeightedEdge<Double>>()
         {
 
             public void connect()


Reply via email to