Skip to content

Commit 6801710

Browse files
committed
Renewed execution environment.
1 parent 8b9390f commit 6801710

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
linux_tests:
9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-latest
1010

1111
services:
1212
mailcatcher:

tests/unit/Swift/Transport/Esmtp/Auth/NTLMAuthenticatorTest.php

+4
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ public function testMessage1Generator()
2929

3030
public function testLMv1Generator()
3131
{
32+
if (!in_array('des-ecb', openssl_get_cipher_methods())) {
33+
$this->markTestSkipped('Need Cipher DES-ECB to run these tests.');
34+
}
35+
3236
$password = 'test1234';
3337
$challenge = 'b019d38bad875c9d';
3438
$lmv1 = '1879f60127f8a877022132ec221bcbf3ca016a9f76095606';

0 commit comments

Comments
 (0)