diff options
author | Andrey Andreev <narf@devilix.net> | 2015-09-10 12:14:00 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2015-09-10 12:14:00 +0200 |
commit | 72ebac4eed3f5de650a26ffbc34fc0aaaa49c7d4 (patch) | |
tree | c5b5ea73064f5fc436f11f105ba8fb019f359698 /tests | |
parent | 20f362b85de64b755afdab07b1aeb652e32f1b50 (diff) |
Fix a broken unit test from 700619cebf75c4e4fcda6a2d7bea1afb84a029e4
Diffstat (limited to 'tests')
-rw-r--r-- | tests/codeigniter/core/Security_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codeigniter/core/Security_test.php b/tests/codeigniter/core/Security_test.php index 52bb296ad..68b52247e 100644 --- a/tests/codeigniter/core/Security_test.php +++ b/tests/codeigniter/core/Security_test.php @@ -151,7 +151,7 @@ class Security_test extends CI_TestCase { $this->security->remove_evil_attributes('<foo bar=">" baz=\'\' onAfterGreaterThan="quotes">', FALSE) ); $this->assertEquals( - '<foo bar=">" baz=\'\'[removed]>', + '<foo bar=">" baz=\'\' [removed]>', $this->security->remove_evil_attributes('<foo bar=">" baz=\'\' onAfterGreaterThan=noQuotes>', FALSE) ); } |