Skip to content
Snippets Groups Projects
Commit 6956f1bf authored by brinn's avatar brinn
Browse files

Fix stupid unit test expectation.

SVN: 26520
parent facb4a7d
No related branches found
No related tags found
No related merge requests found
......@@ -58,11 +58,10 @@ public class AbstractIShareFinderTestCase extends AssertJUnit
final File file = new File(shareId);
Share share = new Share(file, speed, new IFreeSpaceProvider()
{
@Override
public long freeSpaceKb(HostAwareFile path) throws IOException
{
assertSame(file, path.getLocalFile());
assertEquals(file, path.getLocalFile());
return freeSpace / FileUtils.ONE_KB;
}
});
......
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