Skip to content
Snippets Groups Projects
Commit 6b47dbe4 authored by Ryan Izard's avatar Ryan Izard
Browse files

Merge pull request #549 from oxisto/hotfix/unit-test

fixed failed unit test because of new handleOutgoingMessage() in IOFSwitchManager
parents 669ed0c8 b4865c0a
No related branches found
No related tags found
No related merge requests found
......@@ -48,16 +48,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12</version>
<configuration>
<excludes>
<exclude>**</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
......@@ -224,4 +214,4 @@
<lib-restlet-version>2.3.2</lib-restlet-version>
<lib-hamcrest-version>1.3</lib-hamcrest-version>
</properties>
</project>
\ No newline at end of file
</project>
......@@ -1394,6 +1394,8 @@ public class OFSwitchBaseTest {
reset(switchManager);
expect(switchManager.isCategoryRegistered(category)).andReturn(true);
switchManager.handleOutgoingMessage(sw, testMessage);
expectLastCall();
replay(switchManager);
sw.write(testMessage, category);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment