Skip to content

Commit

Permalink
[ci skip] Adapting the php comment on assert
Browse files Browse the repository at this point in the history
  • Loading branch information
gxgpet committed Jan 13, 2024
1 parent 7060216 commit d1a488a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/codeigniter/libraries/Encryption_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public function test_initialize_encrypt_decrypt()

$this->assertEquals($message, $this->encryption->decrypt($this->encryption->encrypt($message)));

// Try DES in ECB mode, just for the sake of changing stuff
// Try DES3 in OFB mode, just for the sake of changing stuff
$this->encryption->initialize(array('cipher' => 'tripledes', 'mode' => 'ofb', 'key' => substr($key, 0, 8)));
$this->assertEquals($message, $this->encryption->decrypt($this->encryption->encrypt($message)));
}
Expand Down

0 comments on commit d1a488a

Please sign in to comment.