Skip to content

Commit

Permalink
Update src/test/decompress_test.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: Oliver Lee <[email protected]>
  • Loading branch information
garymm and oliverlee authored Feb 13, 2024
1 parent 9e107e7 commit d1a735e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/decompress_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ auto main(int, char* argv[]) -> int
std::span<std::byte> dst{dst_array};
const auto status = decompress(src, dst);
expect(status == DecompressStatus::Success);
expect(std::ranges::equal(dst, expected));
expect(range_eq(dst, expected));
};

test("fixed huffman") = [argv] {
Expand Down

0 comments on commit d1a735e

Please sign in to comment.