Skip to content

Commit

Permalink
Adjust test with 404 status.
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed Jan 10, 2025
1 parent d464713 commit 2a8c7b4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ public void getDavQuota() throws IOException
Sardine sardine = SardineFactory.begin();
sardine.createDirectory(url);
DavQuota davQuota = sardine.getQuota(url);
assertTrue(davQuota.getQuotaAvailableBytes() > 0);
assertEquals(0, davQuota.getQuotaAvailableBytes());
assertEquals(0, davQuota.getQuotaUsedBytes());
}

Expand Down

0 comments on commit 2a8c7b4

Please sign in to comment.