From 1df8f3b5c64dcbb56b543de91e74efaafcdff2b7 Mon Sep 17 00:00:00 2001 From: Ta5r Date: Tue, 24 Sep 2024 12:48:33 +0530 Subject: [PATCH] temp : log breaks --- tests/unit/CoreQuoteTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/unit/CoreQuoteTest.php b/tests/unit/CoreQuoteTest.php index d2ce2ad6..92bf3743 100644 --- a/tests/unit/CoreQuoteTest.php +++ b/tests/unit/CoreQuoteTest.php @@ -109,6 +109,7 @@ public function test_retrieve_core_quote_fields_and_attributes(): void { ]; $actual = graphql( compact( 'query', 'variables' ) ); + error_log( print_r( $actual, true ) ); $this->assertArrayNotHasKey( 'errors', $actual, 'There should not be any errors' ); $this->assertArrayHasKey( 'data', $actual, 'The data key should be present' ); @@ -186,6 +187,7 @@ public function test_retrieve_core_quote_additional_attributes(): void { ]; $actual = graphql( compact( 'query', 'variables' ) ); + error_log( print_r( $actual, true ) ); $this->assertArrayNotHasKey( 'errors', $actual, 'There should not be any errors' ); $this->assertArrayHasKey( 'data', $actual, 'The data key should be present' );