Skip to content

Commit 461ba87

Browse files
committed
Improve error messaging on a view test
1 parent 94a66f6 commit 461ba87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

demos/testing/tests/testPeopleViews.cfc

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
var elems = soup.select("form");
4444
assertEquals(1, arrayLen(elems));
4545
var elemForm = elems[1];
46-
assertEquals("post", elemForm.attr("method"));
46+
assertEquals("post", elemForm.attr("method"), "Form method should be POST");
4747

4848
elems = soup.select("input[name=_method]");
4949
assertEquals(1, arrayLen(elems));

0 commit comments

Comments
 (0)