aboutsummaryrefslogtreecommitdiff
path: root/git-codereview/change_test.go
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2014-12-23 08:50:23 +1100
committerAndrew Gerrand <adg@golang.org>2014-12-22 22:01:26 +0000
commit6acef9210d0973e060d336d9b05abdd4b117b226 (patch)
treee437dad0777999e11593bc39b737934712d3714a /git-codereview/change_test.go
parente63315536b41a0733eba850dfef95c0dbce9de8e (diff)
downloadgo-x-review-6acef9210d0973e060d336d9b05abdd4b117b226.tar.xz
git-codereview: permit dot before colon in change description
Change-Id: I42601f47b318ab0be388480e17f627a757965486 Reviewed-on: https://go-review.googlesource.com/1992 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'git-codereview/change_test.go')
-rw-r--r--git-codereview/change_test.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/git-codereview/change_test.go b/git-codereview/change_test.go
index d055287..4a24c6a 100644
--- a/git-codereview/change_test.go
+++ b/git-codereview/change_test.go
@@ -47,6 +47,7 @@ func TestMessageRE(t *testing.T) {
{"math: fix cosine", true},
{"math/rand: make randomer", true},
{"math/rand, crypto/rand: fix random sources", true},
+ {"cmd/internal/rsc.io/x86: update from external repo", true},
} {
got := messageRE.MatchString(c.in)
if got != c.want {