We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73d3d64 commit 7060216Copy full SHA for 7060216
tests/codeigniter/libraries/Encryption_test.php
@@ -5,6 +5,11 @@ class Encryption_test extends CI_TestCase {
5
public function set_up()
6
{
7
$this->encryption = new Mock_Libraries_Encryption();
8
+
9
+ if (version_compare(PHP_VERSION, '7.1', '<'))
10
+ {
11
+ $this->markTestSkipped('Ubuntu-latest OpenSSL is not working correct in some older PHP versions.');
12
+ }
13
}
14
15
// --------------------------------------------------------------------
0 commit comments