File tree 1 file changed +3
-5
lines changed
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,9 @@ SCENARIO( "Decoding an LZSS stream of data", "[lzss::Decoder]" ) {
10
10
// the lzss file provided as test when decompressed are made by incrementing a 4 byte integer
11
11
// starting from 0, up to (file size-1)/4, thus it is easy to validate the correctness of the result
12
12
13
- FILE *f = fopen (" test_files/test-64k.lzss" , " r" );
13
+ FILE *f = fopen (" extras/test/test_files/test-64k.lzss" , " r" );
14
+ REQUIRE ( f != nullptr );
15
+
14
16
uint32_t value = 0 ;
15
17
uint64_t position = 0 ;
16
18
@@ -23,10 +25,6 @@ SCENARIO( "Decoding an LZSS stream of data", "[lzss::Decoder]" ) {
23
25
position++;
24
26
});
25
27
26
- THEN ( " File is open" ) {
27
- REQUIRE ( f != nullptr );
28
- }
29
-
30
28
WHEN ( " Decompress is called on the decoder" ) {
31
29
uint8_t buf[64 ];
32
30
size_t read_bytes;
You can’t perform that action at this time.
0 commit comments