diff options
author | Maksim Denisov <denisov.maksim@huawei.com> | 2024-08-29 13:49:58 +0200 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2024-08-30 17:17:09 +0200 |
commit | ace40adf1ed751072bc858d40c08f8f56340b592 (patch) | |
tree | 5196e496cd238b9c60ac8bf6c9df59ae1ea1e9ba /test/buildtool/storage | |
parent | 0df9bfcbcda9f87097bd313819be0be2cf5fa892 (diff) | |
download | justbuild-ace40adf1ed751072bc858d40c08f8f56340b592.tar.gz |
Replace bazel_re::Digest in LocalAC
...with ArtifactDigest.
Diffstat (limited to 'test/buildtool/storage')
-rw-r--r-- | test/buildtool/storage/local_ac.test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/buildtool/storage/local_ac.test.cpp b/test/buildtool/storage/local_ac.test.cpp index c692a75c..9923108d 100644 --- a/test/buildtool/storage/local_ac.test.cpp +++ b/test/buildtool/storage/local_ac.test.cpp @@ -27,7 +27,7 @@ [[nodiscard]] static auto RunDummyExecution( gsl::not_null<LocalAC<true> const*> const& ac, gsl::not_null<LocalCAS<true> const*> const& cas_, - bazel_re::Digest const& action_id, + ArtifactDigest const& action_id, std::string const& seed) -> bool; TEST_CASE("LocalAC: Single action, single result", "[storage]") { @@ -136,7 +136,7 @@ TEST_CASE("LocalAC: Same two actions, two different results", "[storage]") { auto RunDummyExecution(gsl::not_null<LocalAC<true> const*> const& ac, gsl::not_null<LocalCAS<true> const*> const& cas_, - bazel_re::Digest const& action_id, + ArtifactDigest const& action_id, std::string const& seed) -> bool { bazel_re::ActionResult result{}; *result.add_output_files() = [&]() { |