1
0
mirror of https://github.com/silverstripe/silverstripe-comments synced 2024-10-22 11:05:49 +02:00

Merge pull request from creative-commoners/pulls/3/fix-test

MNT Fix unit test
This commit is contained in:
Steve Boyd 2021-11-22 11:56:08 +13:00 committed by GitHub
commit a3c7943fdd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -263,7 +263,7 @@ class CommentsExtensionTest extends FunctionalTest
// The comments form is HTML to do assertions by contains // The comments form is HTML to do assertions by contains
$cf = (string) $item->CommentsForm(); $cf = (string) $item->CommentsForm();
$expected = '/comments/CommentsForm/" method="post" enctype="application/x-www-form-urlencoded">'; $expected = '/comments/CommentsForm/" method="POST" enctype="application/x-www-form-urlencoded">';
$this->assertStringContainsString($expected, $cf); $this->assertStringContainsString($expected, $cf);
$this->assertStringContainsString('<h4>Post your comment</h4>', $cf); $this->assertStringContainsString('<h4>Post your comment</h4>', $cf);