Skip to content
Snippets Groups Projects
Commit 21ad6529 authored by tpylak's avatar tpylak
Browse files

minor: remove warning

SVN: 22996
parent 28116e5b
No related branches found
No related tags found
No related merge requests found
...@@ -81,7 +81,7 @@ public class SimpleShufflingTest extends AbstractFileSystemTestCase ...@@ -81,7 +81,7 @@ public class SimpleShufflingTest extends AbstractFileSystemTestCase
{ {
File file = path.getFile(); File file = path.getFile();
List<Long> list = freeSpace.get(file); List<Long> list = freeSpace.get(file);
assertTrue("Unknown file " + file, list != null); assertNotNull("Unknown file " + file, list);
assertFalse("Unexpected invocation for file " + file, list.isEmpty()); assertFalse("Unexpected invocation for file " + file, list.isEmpty());
return list.remove(0); return list.remove(0);
} }
......
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