Skip to content

Commit

Permalink
Merge pull request #28 from zendesk/zdrve/off-by-1-slash-error
Browse files Browse the repository at this point in the history
Fix bad expectation
  • Loading branch information
zdrve authored Aug 19, 2022
2 parents a74e751 + 53ee49c commit a3fd8ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/checking_mode_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
r = run "--check-unowned"
aggregate_failures do
expect(r.status.exitstatus).to eq(1)
expect(r.stdout).to eq("ERROR: Please add this file to .github/CODEOWNERS: subdir/unowned\n" + help_message)
expect(r.stdout).to eq("ERROR: Please add this file to .github/CODEOWNERS: /subdir/unowned\n" + help_message)
expect(r.stderr).to eq("")
end
end
Expand Down

0 comments on commit a3fd8ec

Please sign in to comment.