diff options
Diffstat (limited to 'test/buildtool/storage/local_cas.test.cpp')
-rw-r--r-- | test/buildtool/storage/local_cas.test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/buildtool/storage/local_cas.test.cpp b/test/buildtool/storage/local_cas.test.cpp index 631d2eba..a5f6876f 100644 --- a/test/buildtool/storage/local_cas.test.cpp +++ b/test/buildtool/storage/local_cas.test.cpp @@ -72,7 +72,7 @@ TEST_CASE_METHOD(HermeticLocalTestFixture, "test/buildtool/storage/data/non_executable_file"}; auto const& cas = Storage::Instance().CAS(); - auto test_blob = CreateBlobFromFile(non_exec_file); + auto test_blob = CreateBlobFromPath(non_exec_file); REQUIRE(test_blob); // check blob not in storage @@ -121,7 +121,7 @@ TEST_CASE_METHOD(HermeticLocalTestFixture, "test/buildtool/storage/data/executable_file"}; auto const& cas = Storage::Instance().CAS(); - auto test_blob = CreateBlobFromFile(exec_file); + auto test_blob = CreateBlobFromPath(exec_file); REQUIRE(test_blob); // check blob not in storage |