Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed Nov 30, 2023
1 parent e056fe8 commit 593ea2a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/EasyPost/Fixture.php
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ public static function eventBytes(): mixed
return mb_convert_encoding(json_encode(json_decode($data, true)), 'UTF-8', mb_list_encodings());
}

/**
/**
* The credit card details below are for a valid proxy card usable
* for tests only and cannot be used for real transactions.
* DO NOT alter these details with real credit card information.
Expand Down
4 changes: 2 additions & 2 deletions test/EasyPost/ShipmentTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ public function testCreate(): void
$this->assertInstanceOf(Shipment::class, $shipment);
$this->assertStringMatchesFormat('shp_%s', $shipment->id);
$this->assertNotNull($shipment->rates);
$this->assertEquals('PNG', $shipment->options->label_format);
$this->assertEquals('123', $shipment->options->invoice_number);
$this->assertEquals('PNG', $shipment->options['label_format']);
$this->assertEquals('123', $shipment->options['invoice_number']);
$this->assertEquals('123', $shipment->reference);
}

Expand Down

0 comments on commit 593ea2a

Please sign in to comment.