Skip to content

Commit

Permalink
chore: Remove assertion on fileKey != null, it IS null in Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
guicamest committed Dec 5, 2023
1 parent c0f910f commit ae8793b
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ private fun BasicFileAttributes.assertAttributes(
assertThat(creationTime().toInstant()).isCloseTo(timeReference, within(30, SECONDS))
assertThat(lastAccessTime().toInstant()).isCloseTo(timeReference, within(30, SECONDS))
assertThat(lastModifiedTime().toInstant()).isCloseTo(timeReference, within(30, SECONDS))
assertThat(fileKey()).isNotNull
assertThat(size()).isEqualTo(expectedSize)
}

Expand Down

0 comments on commit ae8793b

Please sign in to comment.