]> Cypherpunks repositories - gostls13.git/commitdiff
test: fix error output in the test
authorDmitriy Vyukov <dvyukov@google.com>
Fri, 19 Jul 2013 13:48:19 +0000 (17:48 +0400)
committerDmitriy Vyukov <dvyukov@google.com>
Fri, 19 Jul 2013 13:48:19 +0000 (17:48 +0400)
R=golang-dev, iant
CC=golang-dev
https://golang.org/cl/11432046

test/fixedbugs/issue5493.go

index 827281bdca42e1ff44e684851b892f7bbcebafce..affc07b58803c1aef668bb3c069364d04489d557 100644 (file)
@@ -51,7 +51,7 @@ func main() {
                runtime.GC()
        }
        if count != 0 {
-               println(count, "out of", N, "finalizer are called")
+               println(count, "out of", N, "finalizer are not called")
                panic("not all finalizers are called")
        }
 }