Skip to content

Commit 07edc47

Browse files
SimplyLizclaude
andcommitted
fix: replace remaining lip:: path references with lip_core:: in tests
Missed inline lip::schema:: and lip::daemon:: references in integration.rs that were not caught by the earlier use-only sed pass. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 220cc4b commit 07edc47

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

bindings/rust/tests/integration.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ async fn recv(stream: &mut UnixStream) -> anyhow::Result<ServerMessage> {
4444
fn make_doc(uri: &str, source: &str) -> OwnedDocument {
4545
OwnedDocument {
4646
uri: uri.to_owned(),
47-
content_hash: lip::schema::sha256_hex(source.as_bytes()),
47+
content_hash: lip_core::schema::sha256_hex(source.as_bytes()),
4848
language: "rust".to_owned(),
4949
occurrences: vec![],
5050
symbols: vec![],
@@ -80,7 +80,7 @@ async fn daemon_full_pipeline() {
8080
// ── 1. Handshake ──────────────────────────────────────────────────────────
8181
send(
8282
&mut client,
83-
&ClientMessage::Manifest(lip::daemon::ManifestRequest {
83+
&ClientMessage::Manifest(lip_core::daemon::ManifestRequest {
8484
repo_root: "/tmp/test-repo".to_owned(),
8585
merkle_root: "abc123".to_owned(),
8686
dep_tree_hash: "def456".to_owned(),
@@ -273,7 +273,7 @@ async fn daemon_restart_restores_journal() {
273273
// Also set a merkle root so we can verify lifecycle state on restart.
274274
send(
275275
&mut client,
276-
&ClientMessage::Manifest(lip::daemon::ManifestRequest {
276+
&ClientMessage::Manifest(lip_core::daemon::ManifestRequest {
277277
repo_root: "/tmp/persist-repo".into(),
278278
merkle_root: "persist-hash".into(),
279279
dep_tree_hash: String::new(),
@@ -330,7 +330,7 @@ async fn daemon_restart_restores_journal() {
330330
// was fully restored from the journal.
331331
send(
332332
&mut client,
333-
&ClientMessage::Manifest(lip::daemon::ManifestRequest {
333+
&ClientMessage::Manifest(lip_core::daemon::ManifestRequest {
334334
repo_root: "/tmp/persist-repo".into(),
335335
merkle_root: "persist-hash".into(),
336336
dep_tree_hash: String::new(),

0 commit comments

Comments
 (0)