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 1ba7175 commit c1cc90aCopy full SHA for c1cc90a
tests/Omnipay/Common/CreditCardTest.php
@@ -233,6 +233,8 @@ public function testGetBrandMasterCard()
233
{
234
$card = new CreditCard(array('number' => '5555555555554444'));
235
$this->assertSame(CreditCard::BRAND_MASTERCARD, $card->getBrand());
236
+ $card = new CreditCard(array('number' => '2221000010000015'));
237
+ $this->assertSame(CreditCard::BRAND_MASTERCARD, $card->getBrand());
238
}
239
240
public function testGetBrandAmex()
0 commit comments