Minor improvements

This commit is contained in:
Wojdylak 2024-10-30 14:14:29 +01:00
parent 2126d7e3fa
commit 130dae846c
No known key found for this signature in database
GPG key ID: 7509E560A6821ABE
3 changed files with 3 additions and 3 deletions

View file

@ -93,8 +93,8 @@ class UpdatePage extends BaseUpdatePage implements UpdatePageInterface
'sandbox' => '[data-test-sandbox]',
'secret_key' => '[data-test-secret-key]',
'signature' => '[data-test-signature]',
'username' => '[data-test-username]',
'use_payum' => '[data-test-use-payum]',
'username' => '[data-test-username]',
]);
}
}

View file

@ -32,7 +32,7 @@ final class GatewayConfigEncryptionCheckerTest extends TestCase
}
/** @test */
public function it_cannot_encrypt_when_gateway_config_use_payum(): void
public function it_cannot_encrypt_when_gateway_config_uses_payum(): void
{
$gatewayConfig = $this->createMock(GatewayConfigInterface::class);
$gatewayConfig->method('getUsePayum')->willReturn(true);

View file

@ -135,7 +135,7 @@ final class PaymentRequestEncrypterSpec extends ObjectBehavior
$this->decrypt($paymentRequest);
}
function it_does_not_decrypt_payment_request_is_not_string(
function it_does_not_decrypt_if_payment_request_is_not_string(
PaymentRequestInterface $paymentRequest,
EncrypterInterface $encrypter,
): void {