@@ -94,7 +94,6 @@ describe('resolveOneOf', () => {
9494 [ { default : undefined , param : 'my_key' , value : '42' } ] ,
9595 true ,
9696 ) ,
97- /* biome-ignore lint/style/useNamingConvention: test data uses snake_case intentionally */
9897 ) . toStrictEqual ( { my_key : '42' } )
9998 } )
10099
@@ -107,7 +106,6 @@ describe('resolveOneOf', () => {
107106 ] ,
108107 true ,
109108 ) ,
110- /* biome-ignore lint/style/useNamingConvention: test data uses snake_case intentionally */
111109 ) . toStrictEqual ( { my_key_2 : '42' } )
112110 } )
113111
@@ -120,7 +118,6 @@ describe('resolveOneOf', () => {
120118 ] ,
121119 true ,
122120 ) ,
123- /* biome-ignore lint/style/useNamingConvention: test data uses snake_case intentionally */
124121 ) . toStrictEqual ( { my_key_1 : '42' } )
125122
126123 expect (
@@ -131,7 +128,6 @@ describe('resolveOneOf', () => {
131128 ] ,
132129 true ,
133130 ) ,
134- /* biome-ignore lint/style/useNamingConvention: test data uses snake_case intentionally */
135131 ) . toStrictEqual ( { my_key_1 : '42' } )
136132 } )
137133
@@ -172,7 +168,6 @@ describe('resolveOneOf', () => {
172168 ] ,
173169 false ,
174170 ) ,
175- /* biome-ignore lint/style/useNamingConvention: test data uses snake_case intentionally */
176171 ) . toStrictEqual ( { my_key_1 : false } )
177172 } )
178173} )
@@ -206,7 +201,6 @@ describe('unmarshalArrayOfObject', () => {
206201 it ( 'unmarshals valid array of object' , ( ) => {
207202 expect (
208203 unmarshalArrayOfObject (
209- /* biome-ignore lint/style/useNamingConvention: test data uses snake_case intentionally */
210204 [ { my_number : 42 } , { my_number : 94 } ] ,
211205 unmarshaller ,
212206 ) ,
@@ -235,7 +229,6 @@ describe('unmarshalMapOfObject', () => {
235229 it ( 'unmarshals valid array of object' , ( ) => {
236230 expect (
237231 unmarshalMapOfObject (
238- /* biome-ignore lint/style/useNamingConvention: test data uses snake_case intentionally */
239232 { 'first-key' : { my_number : 42 } , 'second-key' : { my_number : 94 } } ,
240233 unmarshaller ,
241234 ) ,
0 commit comments