Skip to content

Commit

Permalink
Remove trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
mtth committed Apr 20, 2020
1 parent c1eff41 commit bd842ef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/test_types.js
Original file line number Diff line number Diff line change
Expand Up @@ -2966,16 +2966,16 @@ suite('types', function () {
type: 'record',
logicalType: 'pt',
name: 'A',
fields: [{name: 'a', type: 'int'}],
fields: [{name: 'a', type: 'int'}]
},
{
type: 'record',
logicalType: 'pt',
name: 'B',
fields: [{name: 'b', type: 'int'}],
},
fields: [{name: 'b', type: 'int'}]
}
],
{logicalTypes: {pt: PassThroughType}, wrapUnions: true},
{logicalTypes: {pt: PassThroughType}, wrapUnions: true}
);
assert(t.isValid({A: {a: 123}}));
assert(t.isValid({B: {b: 456}}));
Expand Down

0 comments on commit bd842ef

Please sign in to comment.