Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiothiroki committed May 1, 2021
1 parent 8a1aa00 commit fbb6e52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/Flight/tests/flighService.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ describe("Flight service", () => {
expect(result).toEqual(mockFlightResponse);
expect(global.fetch).toHaveBeenCalledTimes(1);
expect(global.fetch).toHaveBeenCalledWith(
"https://api.skypicker.com/flights?dateFrom=28%2F04%2F2021&dateTo=28%2F04%2F2021&fly_from=BWI&fly_to=TLV&return_from=30%2F04%2F2021&return_to=30%2F04%2F2021&partner=skypicker&limit=10"
"https://api.skypicker.com/flights?fly_from=BWI&fly_to=TLV&dateFrom=28%2F04%2F2021&dateTo=28%2F04%2F2021&return_from=30%2F04%2F2021&return_to=30%2F04%2F2021&partner=skypicker&limit=10"
);
});
});

0 comments on commit fbb6e52

Please sign in to comment.