Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply suggestions from code review
Co-authored-by: jen_h <[email protected]>
  • Loading branch information
erikeldridge and jenh authored Feb 20, 2024
commit e6e577914f2b375961459e53aa515abf9604f429
4 changes: 2 additions & 2 deletions test/unit/remote-config/remote-config.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@ describe('RemoteConfig', () => {
stubs.push(stub);
return remoteConfig.getServerTemplate()
.then((template) => {
// if parameters are not present in the response, we set it to an empty object.
// If parameters are not present in the response, we set it to an empty object.
expect(template.cache.parameters).deep.equals({});
});
});
Expand All @@ -760,7 +760,7 @@ describe('RemoteConfig', () => {
stubs.push(stub);
return remoteConfig.getServerTemplate()
.then((template) => {
// if conditions are not present in the response, we set it to an empty array.
// If conditions are not present in the response, we set it to an empty array.
expect(template.cache.conditions).deep.equals([]);
});
});
Expand Down