File tree Expand file tree Collapse file tree 2 files changed +1
-8
lines changed Expand file tree Collapse file tree 2 files changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ coverage:
17
17
- .git/*
18
18
- javascript/*
19
19
- katex/*
20
- - mathjax/*
21
20
- migrations/*
22
21
- tests/*
23
22
- tinymce4/*
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ public function testEncodeStringForDisplayTagCheckEverything()
64
64
$ result = Sanitize::encodeStringForDisplay (
65
65
"<h1 color='blue'>Here & there.</h1> <h1 color= \"red \">It works!</h1> " );
66
66
$ this ->assertEquals ("<h1 color='blue'>Here & there.</h1> "
67
- . " <h2 color="red">It works!</h2 > " , $ result );
67
+ . " <h1 color="red">It works!</h1 > " , $ result );
68
68
}
69
69
70
70
/*
@@ -235,12 +235,6 @@ public function testOnlyIntWithLettersBeforeAndAfter()
235
235
$ this ->assertEquals (123 , $ result );
236
236
}
237
237
238
- public function testOnlyIntLargerThanPhpMax ()
239
- {
240
- $ result = Sanitize::onlyInt (PHP_INT_MAX . "1234567890 " );
241
- $ this ->assertEquals (PHP_INT_MAX . "1234567890 " , $ result );
242
- }
243
-
244
238
/*
245
239
* onlyFloat
246
240
*/
You can’t perform that action at this time.
0 commit comments