Skip to content

Commit

Permalink
fix test for default image_upload_storage_engine
Browse files Browse the repository at this point in the history
  • Loading branch information
levalleux-ludo committed Jul 9, 2021
1 parent 358c17c commit 8ffe796
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/services/ConfigurationService.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,10 +207,10 @@ describe("ConfigurationService", () => {
});
});

it("returns GCP when no environment variable or override", () => {
it("returns AWS when no environment variable or override", () => {
const configurationService = new ConfigurationService();

expect(configurationService.imageUploadStorageEngine).to.eql("GCP");
expect(configurationService.imageUploadStorageEngine).to.eql("AWS");
});
});

Expand Down

0 comments on commit 8ffe796

Please sign in to comment.