-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: fidelity typo in preference api #662
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #662 +/- ##
==========================================
+ Coverage 88.02% 88.20% +0.17%
==========================================
Files 417 417
Lines 6598 6602 +4
Branches 1428 1430 +2
==========================================
+ Hits 5808 5823 +15
+ Misses 765 755 -10
+ Partials 25 24 -1
☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
small spelling nits. otherwise this looks good!
@@ -573,6 +573,39 @@ describe('TranscriptSettings', () => { | |||
|
|||
expect(screen.getByText('Failed to update 3PlayMedia transcripts settings.')).toBeVisible(); | |||
}); | |||
|
|||
it('should show error alert wit default message on 3PlayMedia preferences update', async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit spelling: "with"
@@ -541,7 +541,7 @@ describe('TranscriptSettings', () => { | |||
expect(screen.getByText('Failed to update Cielo24 transcripts settings.')).toBeVisible(); | |||
}); | |||
|
|||
it('should show error alert on 3PlayMedia preferences update', async () => { | |||
it('should show error alert wit default message on 3PlayMedia preferences update', async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit spelling: "with"
This PR fixes the typo in the
transcript_preferences
api. Previous the json passed to the api wasAs a result the api threw an error because it was expecting
cielo24_fidelity
instead ofcielo24_fideltiy
.