diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-04-25 18:26:02 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-04-25 18:26:02 +0000 |
commit | a7f12c0326f4c6808fa84fc8b0f57536fdc0002e (patch) | |
tree | 6580e3d8210f44678ead0ea92c5de739a6fb3dac /modules/book/book.test | |
parent | d7f3c18d17e4be51c18eb3adcbc1492659026757 (diff) | |
download | brdo-a7f12c0326f4c6808fa84fc8b0f57536fdc0002e.tar.gz brdo-a7f12c0326f4c6808fa84fc8b0f57536fdc0002e.tar.bz2 |
- Patch #251263 by catch: fixing up many code style issues in the tests.
Diffstat (limited to 'modules/book/book.test')
-rw-r--r-- | modules/book/book.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/book/book.test b/modules/book/book.test index 7961bda8b..e9e70182d 100644 --- a/modules/book/book.test +++ b/modules/book/book.test @@ -23,7 +23,7 @@ class BookTestCase extends DrupalWebTestCase { } /** - * Test book funcitonality through node interfaces. + * Test book functionality through node interfaces. */ function testBook() { // Create users. @@ -37,7 +37,7 @@ class BookTestCase extends DrupalWebTestCase { $book = $this->book; /* - * Add page hiearchy to book. + * Add page hierarchy to book. * Book * |- Node 0 * |- Node 1 @@ -54,7 +54,7 @@ class BookTestCase extends DrupalWebTestCase { $this->drupalLogout(); - // Check to make sure that book pages display properly. + // Check that book pages display. $this->drupalLogin($web_user); $this->checkBookNode($book, array($nodes[0], $nodes[3], $nodes[4]), false, false, $nodes[0]); @@ -66,7 +66,7 @@ class BookTestCase extends DrupalWebTestCase { } /** - * Checks the outline of sub-pages; previous, up, and next; and check printer friendly version. + * Check the outline of sub-pages; previous, up, and next; and printer friendly version. * * @param Node $node Node to check. * @param array $nodes Nodes that should be in outline. |