We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3aebbd commit 5075333Copy full SHA for 5075333
src/test/groovy/edu/ie3/util/io/FileIOUtilsTest.groovy
@@ -90,6 +90,7 @@ class FileIOUtilsTest extends Specification {
90
then:
91
noExceptionThrown()
92
Files.exists(archiveFile)
93
+ println(Files.size(archiveFile))
94
Files.size(archiveFile) >= 1511 && Files.size(archiveFile) <= 1605 // Should be around 1558 bytes +/- 3 %
95
}
96
@@ -105,6 +106,7 @@ class FileIOUtilsTest extends Specification {
105
106
107
108
109
110
Files.size(archiveFile) >= 1578 && Files.size(archiveFile) <= 1676 // Should be around 1627 bytes +/- 3 %
111
112
0 commit comments