Skip to content

Commit

Permalink
No public description
Browse files Browse the repository at this point in the history
Tested:
PiperOrigin-RevId: 676297608
Change-Id: Ie78c574212d787a43d69926cbab653e57d36f3ca
  • Loading branch information
Reverb Team authored and copybara-github committed Sep 19, 2024
1 parent 24b818d commit 845668a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions reverb/cc/chunker_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -111,15 +111,15 @@ std::shared_ptr<Chunker> MakeChunker(internal::TensorSpec spec,

class MockChunkerOptions : public ChunkerOptions {
public:
MOCK_METHOD(int, GetMaxChunkLength, (), (const override));
MOCK_METHOD(int, GetNumKeepAliveRefs, (), (const override));
MOCK_METHOD(bool, GetDeltaEncode, (), (const override));
MOCK_METHOD(bool, GetCompressionDisabled, (), (const override));
MOCK_METHOD(int, GetMaxChunkLength, (), (const, override));
MOCK_METHOD(int, GetNumKeepAliveRefs, (), (const, override));
MOCK_METHOD(bool, GetDeltaEncode, (), (const, override));
MOCK_METHOD(bool, GetCompressionDisabled, (), (const, override));
MOCK_METHOD(absl::Status, OnItemFinalized,
(const PrioritizedItem& item,
absl::Span<const std::shared_ptr<CellRef>> refs),
(override));
MOCK_METHOD(std::shared_ptr<ChunkerOptions>, Clone, (), (const override));
MOCK_METHOD(std::shared_ptr<ChunkerOptions>, Clone, (), (const, override));
};

TEST(CellRef, IsReady) {
Expand Down

0 comments on commit 845668a

Please sign in to comment.