Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MDavidson17 committed Nov 23, 2021
1 parent b23996f commit 858a4a5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ o.spec('Historical Imagery Extension Collection', () => {
o("Summaries with no 'platform' property should fail validation", async () => {
// given
const example = JSON.parse(await fs.readFile(examplePath));
delete example.summaries['platform'];
delete example.summaries.platform;

// when
let valid = validate(example);
Expand All @@ -99,7 +99,7 @@ o.spec('Historical Imagery Extension Collection', () => {
o("Summaries with no 'mission' property should fail validation", async () => {
// given
const example = JSON.parse(await fs.readFile(examplePath));
delete example.summaries['mission'];
delete example.summaries.mission;

// when
let valid = validate(example);
Expand Down

0 comments on commit 858a4a5

Please sign in to comment.