Fix testcase assumption

This commit is contained in:
Joakim Erdfelt 2022-09-06 16:59:07 -05:00
parent a24512f916
commit be3ea8275b
No known key found for this signature in database
GPG Key ID: 2D0E1FB8FE4B68B4
1 changed files with 1 additions and 1 deletions

View File

@ -366,7 +366,7 @@ public class FileSystemResourceTest
Resource base = ResourceFactory.root().newResource(dir);
Resource res = base.resolve("foo");
assertThat("foo.lastModified", res.lastModified(), nullValue());
assertThat("foo.lastModified", res.lastModified(), is(Instant.EPOCH));
}
@Test