Skip to content

Commit

Permalink
fix error with phpunit10 (security_helper_test class not found)
Browse files Browse the repository at this point in the history
 1) Class security_helper_test cannot be found in tests/codeigniter/helpers/security_helper_test.php
  • Loading branch information
tenzap committed Jun 19, 2023
1 parent 0c52aa9 commit 055438a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/codeigniter/helpers/security_helper_test.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

class Security_helper_tests extends CI_TestCase {
class Security_helper_test extends CI_TestCase {

function setUp()
function set_up()
{
$this->helper('security');
$obj = new stdClass;
Expand Down

0 comments on commit 055438a

Please sign in to comment.