Skip to content

Commit 80f4423

Browse files
dmealingclaude
andcommitted
refactor(conformance): fix dangling doc reference in ScenarioLoader
The expect-capture rationale comment pointed at "ExpectNode.ToJsonNode", a type/method that does not exist. The real conversion lives in QueryScenarioRunner.YamlExpectToJsonNode — point the reader there. Comment-only; no behavior change. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent bb2a06e commit 80f4423

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

server/csharp/MetaObjects.IntegrationTests/Runner/ScenarioLoader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public static class ScenarioLoader
1919
// object-graph deserialization collapses both to the string "45", which would
2020
// make every INTEGER-typed expectation (durationMinutes, min/max aggregates)
2121
// un-representable. This matches the TS authority, whose JS YAML loader infers
22-
// scalar types the same way. See ExpectNode.ToJsonNode.
22+
// scalar types the same way. See QueryScenarioRunner.YamlExpectToJsonNode.
2323
private static readonly IDeserializer Yaml = new DeserializerBuilder()
2424
.WithNamingConvention(HyphenatedNamingConvention.Instance)
2525
.WithTypeConverter(new YamlNodeTypeConverter())

0 commit comments

Comments
 (0)