Skip to content

Commit f4c9512

Browse files
committed
Fix tests
1 parent 09029b0 commit f4c9512

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

TypedocConverter.Test/test.expected

-8
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,9 @@ namespace TypedocConverter.Test
66
/// </summary>
77
enum MyEnum
88
{
9-
[Newtonsoft.Json.JsonProperty("A", NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
109
A = 0,
11-
[Newtonsoft.Json.JsonProperty("B", NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
1210
B = 1,
13-
[Newtonsoft.Json.JsonProperty("C", NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
1411
C = 2,
15-
[Newtonsoft.Json.JsonProperty("D", NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
1612
D = 2
1713
}
1814
}
@@ -127,22 +123,18 @@ namespace TypedocConverter.Test
127123
///<summary>
128124
/// A
129125
///</summary>
130-
[Newtonsoft.Json.JsonProperty("A", NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
131126
A,
132127
///<summary>
133128
/// B
134129
///</summary>
135-
[Newtonsoft.Json.JsonProperty("B", NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
136130
B,
137131
///<summary>
138132
/// C
139133
///</summary>
140-
[Newtonsoft.Json.JsonProperty("C", NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
141134
C,
142135
///<summary>
143136
/// other
144137
///</summary>
145-
[Newtonsoft.Json.JsonProperty("Other", NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
146138
Other
147139
}
148140
class UnionStrConverter : Newtonsoft.Json.JsonConverter

0 commit comments

Comments
 (0)