From d1a735e3113e4a10abe1ce534693cdb12a52b876 Mon Sep 17 00:00:00 2001 From: Gary Miguel Date: Tue, 13 Feb 2024 10:06:14 -0800 Subject: [PATCH] Update src/test/decompress_test.cpp Co-authored-by: Oliver Lee --- src/test/decompress_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/decompress_test.cpp b/src/test/decompress_test.cpp index 75377ea..395c6dd 100644 --- a/src/test/decompress_test.cpp +++ b/src/test/decompress_test.cpp @@ -121,7 +121,7 @@ auto main(int, char* argv[]) -> int std::span 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] {