Skip to content

Commit 0e99d68

Browse files
author
shuxu.li
committed
feat: Refresh method support for table
1 parent dd7c679 commit 0e99d68

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/mock_catalog.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ class MockCatalog : public Catalog {
2828
MockCatalog() = default;
2929
~MockCatalog() override = default;
3030

31-
// NOLINTBEGIN
32-
MOCK_METHOD(std::string_view, name, (), (const, override));
31+
// NOLINTBEGIN(clang-diagnostic-error)
32+
MOCK_METHOD((std::string_view), name, (), (const, override));
3333

34-
MOCK_METHOD(Status, CreateNamespace,
34+
MOCK_METHOD((Status), CreateNamespace,
3535
(const Namespace&, (const std::unordered_map<std::string, std::string>&)),
3636
(override));
37-
// NOLINTEND
37+
// NOLINTEND(clang-diagnostic-error)
3838

3939
MOCK_METHOD((Result<std::vector<Namespace>>), ListNamespaces, (const Namespace&),
4040
(const, override));

0 commit comments

Comments
 (0)