Skip to content

Commit fc7b2c9

Browse files
authored
Merge pull request #586 from AdaWorldAPI/claude/fix-585-conformance-drift
fix(conformance): repoint MedcareBridge import after #585 OGIT/OGAR split
2 parents 5a1f187 + 666e359 commit fc7b2c9

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

crates/lance-graph-consumer-conformance/Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,11 @@ publish = false # internal CI gate — not published to crates.io
1212
[dependencies]
1313
# The conformance harness imports UnifiedBridge, AuditChain, SuperDomain etc.
1414
lance-graph-callcenter = { path = "../lance-graph-callcenter" }
15-
# NamespaceBridge trait + bridge implementations (MedcareBridge, OgitBridge, WoaBridge)
15+
# NamespaceBridge trait + OGIT-native legacy bridges (OgitBridge, WoaBridge).
1616
lance-graph-ontology = { path = "../lance-graph-ontology" }
17+
# OGAR-driven port bridges (MedcareBridge / HealthcarePort) — moved out of
18+
# lance-graph-ontology in #585 to restore OGIT/OGAR separation of concerns.
19+
lance-graph-ogar = { path = "../lance-graph-ogar" }
1720
# fnv1a_str, PrefetchDepth
1821
lance-graph-contract = { path = "../lance-graph-contract" }
1922
# Policy, Role, PermissionSpec for per-consumer test fixtures

crates/lance-graph-consumer-conformance/src/lib.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,11 @@ mod tests {
9090

9191
#[test]
9292
fn medcare_bridge_conforms() {
93-
use lance_graph_ontology::bridges::MedcareBridge;
93+
// MedcareBridge moved to the OGAR crate in #585 (it's codebook-/
94+
// PortSpec-driven via `HealthcarePort`, so it belongs to OGAR, not
95+
// OGIT). OgitBridge / WoaBridge below stay in lance-graph-ontology —
96+
// those are OGIT-native legacy bridges.
97+
use lance_graph_ogar::bridges::MedcareBridge;
9498

9599
let registry = seed_medcare_registry();
96100
let bridge = Arc::new(MedcareBridge::new(registry).unwrap());

0 commit comments

Comments
 (0)