Skip to content

Commit e326137

Browse files
committed
fix syntax
1 parent 3eef382 commit e326137

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Test/Model/WikiPageTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ public function testCreation()
3333

3434
$wikimodel = new Wiki($this->container);
3535
// create wiki pages
36-
$this->assertEquals(1, $wikimodel->createpage($project['id'], "Security", "Some content", '2015-01-01', 'Failed to a create wiki page on project'));
37-
$this->assertEquals(2, $wikimodel->createpage($project['id'], "Conventions", 'More content', 'Failed to an additional create wiki page on project'));
36+
$this->assertEquals(1, $wikimodel->createpage($project['id'], "Security", "Some content", '2015-01-01'), 'Failed to a create wiki page on project');
37+
$this->assertEquals(2, $wikimodel->createpage($project['id'], "Conventions", 'More content'), 'Failed to an additional create wiki page on project');
3838

3939
// grab editions for first wiki page
4040
$editions = $wikimodel->getEditions(1);

0 commit comments

Comments
 (0)