This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/paimon-rust.git
The following commit(s) were added to refs/heads/main by this push:
new ac7d2b2 fix(docs): use correct crate name for integration tests.
(#243)
ac7d2b2 is described below
commit ac7d2b24de8b11c259a445480ada916d3e7516eb
Author: HunterXHunter <[email protected]>
AuthorDate: Wed Apr 15 09:51:21 2026 +0800
fix(docs): use correct crate name for integration tests. (#243)
---
docs/src/getting-started.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/src/getting-started.md b/docs/src/getting-started.md
index 3e5df5d..0b6d88a 100644
--- a/docs/src/getting-started.md
+++ b/docs/src/getting-started.md
@@ -177,6 +177,6 @@ cargo test
# Integration tests (requires Docker)
make docker-up
-cargo test -p integration_tests
+cargo test -p paimon-integration-tests
make docker-down
```