Skip to content

Commit a8d1b9e

Browse files
committed
Fix typo
1 parent 23bdd57 commit a8d1b9e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/src/SimpleSAML/Utils/CryptoTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ public function testLoadPrivateKeyNotRequiredMetadataMissing(): void
309309
public function testLoadPrivateKeyMissingFile(): void
310310
{
311311
$this->expectException(Error\Exception::class);
312-
$config = new Configuration(['privatekey' => 'nonexistant'], 'test');
312+
$config = new Configuration(['privatekey' => 'nonexistent'], 'test');
313313

314314
$this->cryptoUtils->loadPrivateKey($config, false, '', true);
315315
}

tests/src/SimpleSAML/Utils/SystemTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,9 +234,9 @@ public function testGetTempDirBasic(): void
234234
/**
235235
* @test
236236
*/
237-
public function testGetTempDirNonExistant(): void
237+
public function testGetTempDirNonExistent(): void
238238
{
239-
$tempdir = $this->root_directory . DIRECTORY_SEPARATOR . 'nonexistant';
239+
$tempdir = $this->root_directory . DIRECTORY_SEPARATOR . 'nonexistent';
240240
$config = $this->setConfigurationTempDir($tempdir);
241241

242242
$res = $this->sysUtils->getTempDir();

0 commit comments

Comments
 (0)