From c86c7fe0d297bc4bdc548c4b8ba8d3efe355c9ce Mon Sep 17 00:00:00 2001 From: Grant Date: Wed, 17 Jun 2026 15:24:55 -0500 Subject: [PATCH] Correct stale workspace name in docs and comments --- README.md | 2 +- crosscheck_test.go | 4 ++-- keysat.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e297d17..b0a8c50 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ if h != payload.FingerprintHash { Every SDK + the daemon agree on the LIC1 wire format. Crosscheck tests in this package run against the shared `tests/crosscheck/vector.json` (alongside the daemon repo) — three independently-signed fixtures (v1 legacy, v2 trial with entitlements, v2 perpetual unbound) parse to the same field values across Rust, TypeScript, Python, and Go. -When fetched standalone via `go get`, the crosscheck test skips gracefully (the vector file isn't bundled into the Go module). The crosscheck only runs from the parent `licensing/` workspace. +When fetched standalone via `go get`, the crosscheck test skips gracefully (the vector file isn't bundled into the Go module). The crosscheck only runs from the parent `keysat/` workspace. ## API stability diff --git a/crosscheck_test.go b/crosscheck_test.go index a5389d3..f68b11e 100644 --- a/crosscheck_test.go +++ b/crosscheck_test.go @@ -6,7 +6,7 @@ // agrees on. // // The path to vector.json assumes this package is checked out -// under the parent licensing/ workspace (next to +// under the parent keysat/ workspace (next to // licensing-client-rust, etc.). Skip the test gracefully if the // vector isn't reachable — when this SDK is fetched standalone // via `go get`, there's nothing to cross-check against. @@ -75,7 +75,7 @@ func loadVector(t *testing.T) vectorFile { t.Skipf("crosscheck vector.json not found alongside this package " + "(expected at ../tests/crosscheck/vector.json); skipping. " + "This is normal when fetched standalone via `go get` — the " + - "crosscheck only runs from the parent licensing/ workspace.") + "crosscheck only runs from the parent keysat/ workspace.") return vectorFile{} } diff --git a/keysat.go b/keysat.go index 827b3da..5bd1c14 100644 --- a/keysat.go +++ b/keysat.go @@ -18,7 +18,7 @@ // Do not edit one SDK without the others — the wire format is // crosscheck-tested across all four implementations (the daemon, // the Rust SDK, the TS SDK, and this one) using the shared -// vectors at tests/crosscheck/vector.json in the parent licensing +// vectors at tests/crosscheck/vector.json in the parent keysat // repo. package keysat