Skip to content

Commit

Permalink
Apply review comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephanie Roy committed Mar 1, 2023
1 parent 77f9a0c commit 148215e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion extension/src/experiments/workspace.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ describe('Experiments', () => {
await workspaceExperiments.getCwdThenRun(mockedCommandId)

expect(showErrorSpy).toHaveBeenCalledWith(
'Cannot perform task. Your dvc.yaml file contains invalid yaml'
'Cannot perform task. Your dvc.yaml file is invalid.'
)
})

Expand Down
2 changes: 1 addition & 1 deletion extension/src/experiments/workspace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ export class WorkspaceExperiments extends BaseWorkspaceWebviews<

if (stages === undefined) {
await Toast.showError(
'Cannot perform task. Your dvc.yaml file contains invalid yaml'
'Cannot perform task. Your dvc.yaml file is invalid.'
)
return false
}
Expand Down

0 comments on commit 148215e

Please sign in to comment.