From a813c931bb5f85f139429aa3bf094b2327a7f8cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albert=20Juh=C3=A9=20Lluveras?= Date: Thu, 13 May 2021 12:14:15 +0200 Subject: [PATCH] Set default store currency to USD in tests (#4203) --- tests/php/StoreApi/Routes/Cart.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/php/StoreApi/Routes/Cart.php b/tests/php/StoreApi/Routes/Cart.php index 2f27a74c5d3..5e99587e381 100644 --- a/tests/php/StoreApi/Routes/Cart.php +++ b/tests/php/StoreApi/Routes/Cart.php @@ -95,7 +95,7 @@ public function test_get_item() { $this->assertEquals( true, $data['needs_shipping'] ); $this->assertEquals( '30', $data['items_weight'] ); - $this->assertEquals( 'GBP', $data['totals']->currency_code ); + $this->assertEquals( 'USD', $data['totals']->currency_code ); $this->assertEquals( 2, $data['totals']->currency_minor_unit ); $this->assertEquals( '3000', $data['totals']->total_items ); $this->assertEquals( '0', $data['totals']->total_items_tax );