Skip to content

Commit

Permalink
Fixed mistake (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
JR-Morgan authored Jul 16, 2024
1 parent 057aef1 commit baf5ab0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ public static IEnumerable<Base> TestCases()
var listOfBase = new List<object> { s_displayValue }; //This is what our deserializer will output
var listOfMesh = new List<Base> { s_displayValue };
yield return new Base { ["@displayValue"] = s_displayValue };
yield return new Base { ["@displayValue"] = s_displayValue };
yield return new Base { ["displayValue"] = listOfBase };
yield return new Base { ["displayValue"] = s_displayValue };
yield return new Base { ["@displayValue"] = listOfBase };
yield return new Base { ["displayValue"] = listOfBase };
yield return new TypedDisplayValue { displayValue = s_displayValue };
yield return new TypedDisplayValueList { displayValue = listOfMesh };
Expand Down

0 comments on commit baf5ab0

Please sign in to comment.