From b31c95df85d2cbedceb44624cf44cac2ac2e3397 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Wed, 24 Sep 2014 13:04:47 +0200 Subject: [PATCH] Polish code formatting in testing chapter --- src/asciidoc/index.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/asciidoc/index.adoc b/src/asciidoc/index.adoc index 91c34e723a5..68ac02b5f80 100644 --- a/src/asciidoc/index.adoc +++ b/src/asciidoc/index.adoc @@ -21450,7 +21450,7 @@ javadocs for `TestTransaction` for further details. } protected void assertNumUsers(int expected) { - assertEquals("Number of rows in the 'user' table.", expected, countRowsInTable("user")); + assertEquals("Number of rows in the user table.", expected, countRowsInTable("user")); } } ----