Skip to content

Commit 1963b43

Browse files
committed
Fixed broken sort test where upcoming launches were included
1 parent 9c20a43 commit 1963b43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/builders/v3/launch-query.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ test('It should return launches with Bulgaria nationality', async () => {
227227
});
228228

229229
test('It should return launches with an SSL manufacturer', async () => {
230-
const response = await request(app.callback()).get('/v3/launches?manufacturer=SSL');
230+
const response = await request(app.callback()).get('/v3/launches/past?manufacturer=SSL');
231231
expect(response.statusCode).toBe(200);
232232
response.body.forEach(item => {
233233
item.rocket.second_stage.payloads.forEach(payload => {

0 commit comments

Comments
 (0)