Skip to content

Commit e0c5ca7

Browse files
committed
Fix test name.
1 parent ed9448f commit e0c5ca7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Integration/QueryDataTableTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,15 +154,15 @@ public function it_does_not_allow_search_on_added_columns()
154154
}
155155

156156
/** @test */
157-
public function it_does_not_allow_raw_html_on_non_closure_added_columns()
157+
public function it_does_not_allow_raw_html_on_added_columns()
158158
{
159159
$json = $this->call('GET', '/query/xss-add')->json();
160160
$this->assertNotEquals('<a href="#">Allowed</a>', $json['data'][0]['foo']);
161161
$this->assertNotEquals('<a href="#">Allowed</a>', $json['data'][0]['bar']);
162162
}
163163

164164
/** @test */
165-
public function it_does_not_allow_raw_html_on_non_closure_edited_columns()
165+
public function it_does_not_allow_raw_html_on_edited_columns()
166166
{
167167
$json = $this->call('GET', '/query/xss-edit')->json();
168168
$this->assertNotEquals('<a href="#">Allowed</a>', $json['data'][0]['name']);

0 commit comments

Comments
 (0)