diff --git a/README.md b/README.md index f07edf2..27148d7 100644 --- a/README.md +++ b/README.md @@ -23,3 +23,5 @@ Test that you can run it: Here's how to run the test suite: docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.6 go test -v + +## Test webhook diff --git a/http.go b/http.go index ba1d684..be5b4f7 100644 --- a/http.go +++ b/http.go @@ -14,7 +14,7 @@ func to_roman(n int) string { if n == 2 { return "II" } - return "I" + return "I" // oopsie } type romanGenerator int