Skip to content

Commit

Permalink
Remove extra types in test response
Browse files Browse the repository at this point in the history
  • Loading branch information
euniceek committed Nov 26, 2020
1 parent 6293b53 commit 900ca45
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1335,9 +1335,9 @@ describe('ElasticResponse', () => {
];
const response = {
datarows: [
['test-data1', 'message1', { coordinates: { points: { lat: 5, lon: 10 } } }],
['test-data2', 'message2', { coordinates: { points: { lat: 6, lon: 11 } } }],
['test-data3', 'message3', { coordinates: { points: { lat: 7, lon: 12 } } }],
['test-data1', 'message1', { coordinates: { lat: 5, lon: 10 } }],
['test-data2', 'message2', { coordinates: { lat: 6, lon: 11 } }],
['test-data3', 'message3', { coordinates: { lat: 7, lon: 12 } }],
],
schema: [
{ name: 'data', type: 'string' },
Expand Down

0 comments on commit 900ca45

Please sign in to comment.