Skip to content

Commit 6d6e187

Browse files
committed
Remove description checking from TString
1 parent 3b66506 commit 6d6e187

File tree

1 file changed

+1
-1
lines changed
  • src/mono/wasm/debugger/DebuggerTestSuite

1 file changed

+1
-1
lines changed

src/mono/wasm/debugger/DebuggerTestSuite/Support.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -908,7 +908,7 @@ internal void AssertEqual(object expected, object actual, string label) => Asser
908908
internal static JObject TString(string value) =>
909909
value == null ?
910910
TObject("string", is_null : true) :
911-
JObject.FromObject(new { type = "string", value = @value, description = @value });
911+
JObject.FromObject(new { type = "string", value = @value });
912912

913913
internal static JObject TNumber(int value) =>
914914
JObject.FromObject(new { type = "number", value = @value.ToString(), description = value.ToString() });

0 commit comments

Comments
 (0)