Fix parser test concurrency 48/7948/2
authorRobert Varga <rovarga@cisco.com>
Thu, 12 Jun 2014 13:56:43 +0000 (15:56 +0200)
committerRobert Varga <rovarga@cisco.com>
Fri, 13 Jun 2014 08:56:55 +0000 (10:56 +0200)
Change-Id: If91119c49308af46336d727edb2ebe045b85f197
Signed-off-by: Robert Varga <rovarga@cisco.com>
util/src/test/java/org/opendaylight/protocol/util/PCEPHexDumpParserTest.java

index b143ca465d6ea8cf82804e8cecb8392495bb39b0..2c8f2e47ecb66683ca6de11deed12505dfa934dc 100644 (file)
@@ -29,7 +29,7 @@ public class PCEPHexDumpParserTest {
                 PCEPHexDumpParserTest.hexDumpFileName));
         assertEquals(this.expectedSize, result.size());
         final List<byte[]> result1 = PCEPHexDumpParser.parseMessages(new File(getClass().getClassLoader().getResource(
-                PCEPHexDumpParserTest.hexDumpFileName).getPath()));
+                PCEPHexDumpParserTest.hexDumpFileName).toURI()));
         assertEquals(this.expectedSize, result1.size());
     }