diff options
Diffstat (limited to 'test/buildtool/file_system/object_cas.test.cpp')
-rw-r--r-- | test/buildtool/file_system/object_cas.test.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/buildtool/file_system/object_cas.test.cpp b/test/buildtool/file_system/object_cas.test.cpp index be9ba709..df72d038 100644 --- a/test/buildtool/file_system/object_cas.test.cpp +++ b/test/buildtool/file_system/object_cas.test.cpp @@ -30,7 +30,8 @@ TEST_CASE("ObjectCAS", "[file_system]") { auto gen_config = storage_config.Get().CreateGenerationConfig(0); std::string test_content{"test"}; - auto test_digest = ArtifactDigest::Create<ObjectType::File>(test_content); + auto test_digest = ArtifactDigest::Create<ObjectType::File>( + HashFunction::Instance(), test_content); SECTION("CAS for files") { ObjectCAS<ObjectType::File> cas{gen_config.cas_f}; |