Skip to content
Snippets Groups Projects
Commit 2f1579dc authored by brinn's avatar brinn
Browse files

[DMV-31] add support for detection and signaling of errors (fix unit tests in common)

SVN: 7202
parent 253d461d
No related branches found
No related tags found
No related merge requests found
......@@ -131,7 +131,7 @@ public final class HighwaterMarkDirectoryScanningHandlerTest
if (freeSpace > HIGHWATER_MARK)
{
one(directoryScanningHandler).mayHandle(scannedStore, storeItem);
will(returnValue(true));
will(returnValue(HandleInstruction.PROCESS));
}
}
});
......@@ -161,7 +161,7 @@ public final class HighwaterMarkDirectoryScanningHandlerTest
will(returnValue(freeSpace));
one(directoryScanningHandler).mayHandle(scannedStore, storeItem);
will(returnValue(true));
will(returnValue(HandleInstruction.PROCESS));
}
}
});
......
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