Skip to content

Commit

Permalink
Fix typo on tuning word (#1836)
Browse files Browse the repository at this point in the history
  • Loading branch information
arbulu89 committed Sep 18, 2023
1 parent a158a4d commit ef748c5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion assets/js/components/HostDetails/HostDetails.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ describe('HostDetails component', () => {
screen.getByText('Configured Version').nextSibling
).toHaveTextContent(configuredVersion);

expect(screen.getByText('Tunning').nextSibling).toHaveTextContent(
expect(screen.getByText('Tuning').nextSibling).toHaveTextContent(
new RegExp(tuningState, 'i')
);
});
Expand Down
2 changes: 1 addition & 1 deletion assets/js/components/HostDetails/SaptuneSummary.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function SaptuneSummary({
content: <SaptuneVersion version={saptuneVersion} />,
},
{
title: 'Tunning',
title: 'Tuning',
content: <SaptuneTuningState state={saptuneTuning} />,
},
{
Expand Down
2 changes: 1 addition & 1 deletion assets/js/components/HostDetails/SaptuneSummary.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ describe('SaptuneSummary component', () => {
screen.getByText('Configured Version').nextSibling
).toHaveTextContent(configuredVersion);

expect(screen.getByText('Tunning').nextSibling).toHaveTextContent(
expect(screen.getByText('Tuning').nextSibling).toHaveTextContent(
new RegExp(tuningState, 'i')
);
});
Expand Down

0 comments on commit ef748c5

Please sign in to comment.