Skip to content

Commit

Permalink
Merge pull request stripe#462 from stripe/ob-bump-stripe-mock
Browse files Browse the repository at this point in the history
Upgrade stripe-mock to 0.11.2
  • Loading branch information
ob-stripe authored Apr 6, 2018
2 parents fc4cfa0 + 9d9424a commit 82e5743
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ php:

env:
global:
- STRIPE_MOCK_VERSION=0.8.0
- STRIPE_MOCK_VERSION=0.11.2
matrix:
- AUTOLOAD=1
- AUTOLOAD=0
Expand Down
2 changes: 1 addition & 1 deletion tests/Stripe/AccountTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public function testCanDeleteExternalAccount()
'/v1/accounts/' . self::TEST_RESOURCE_ID . '/external_accounts/' . self::TEST_EXTERNALACCOUNT_ID
);
$resource = Account::deleteExternalAccount(self::TEST_RESOURCE_ID, self::TEST_EXTERNALACCOUNT_ID);
$this->assertInstanceOf("Stripe\\BankAccount", $resource);
$this->assertTrue($resource->deleted);
}

public function testCanListExternalAccounts()
Expand Down
2 changes: 1 addition & 1 deletion tests/bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

define("MOCK_MINIMUM_VERSION", "0.5.0");
define("MOCK_MINIMUM_VERSION", "0.11.2");
define("MOCK_PORT", getenv("STRIPE_MOCK_PORT") ?: 12111);

// Send a request to stripe-mock
Expand Down

0 comments on commit 82e5743

Please sign in to comment.