Skip to content

Commit

Permalink
mr: Fix draft test
Browse files Browse the repository at this point in the history
The expected output changed since the test was written. Adjust it
to fix the test.
  • Loading branch information
fmuellner committed Dec 14, 2020
1 parent c1bc35a commit d9a2d69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/mr_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ func Test_mrCmd_Draf(t *testing.T) {
t.Log(string(b))
t.Fatal(err)
}
require.Contains(t, string(b), fmt.Sprintf("Merge Request #%s closed", mrID))
require.Contains(t, string(b), fmt.Sprintf("Merge Request !%s closed", mrID))
})
}

Expand Down

0 comments on commit d9a2d69

Please sign in to comment.