Skip to content

Commit

Permalink
fix php test for loading aes local key
Browse files Browse the repository at this point in the history
  • Loading branch information
marcbaque committed Dec 21, 2023
1 parent 404056d commit 29c2f93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion languages/php/tests/E2E/KeyTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public function testGenerateLocalAes()
$this->assertNotNull($key->key);
$this->assertEquals($key->privateKey, "");

$loadedKey = $keyClient->loadLocalKey(KeyType::Aes256, $key->privateKey);
$loadedKey = $keyClient->loadLocalKey(KeyType::Aes256, $key->key);
$this->assertEquals($key->key, $loadedKey->key);
$this->assertEquals($key->privateKey, $loadedKey->privateKey);
}
Expand Down

0 comments on commit 29c2f93

Please sign in to comment.