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 05306f4 commit c89a70bCopy full SHA for c89a70b
tests/Account/InvoiceQueryTest.php
@@ -35,7 +35,8 @@ public function get_invoice_query_by_id()
35
"contact_method" => "email",
36
"resolution" => "This issue was resolved.",
37
"resolution_date" => '2019-10-25T00:00:00+01:00',
38
- "status" => "Submitted"
+ "status" => "Submitted",
39
+ "date" => "2019-11-07T10:56:54+00:00"
40
],
41
"meta" => []
42
])),
@@ -61,6 +62,7 @@ public function get_invoice_query_by_id()
61
62
$this->assertEquals("This issue was resolved.", $invoiceQuery->resolution);
63
$this->assertInstanceOf(DateTime::class, $invoiceQuery->resolutionDate);
64
$this->assertEquals("Submitted", $invoiceQuery->status);
65
+ $this->assertEquals("2019-11-07T10:56:54+00:00", $invoiceQuery->date);
66
}
67
68
/**
0 commit comments