Skip to content

Commit c89a70b

Browse files
committed
Fix test
1 parent 05306f4 commit c89a70b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/Account/InvoiceQueryTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ public function get_invoice_query_by_id()
3535
"contact_method" => "email",
3636
"resolution" => "This issue was resolved.",
3737
"resolution_date" => '2019-10-25T00:00:00+01:00',
38-
"status" => "Submitted"
38+
"status" => "Submitted",
39+
"date" => "2019-11-07T10:56:54+00:00"
3940
],
4041
"meta" => []
4142
])),
@@ -61,6 +62,7 @@ public function get_invoice_query_by_id()
6162
$this->assertEquals("This issue was resolved.", $invoiceQuery->resolution);
6263
$this->assertInstanceOf(DateTime::class, $invoiceQuery->resolutionDate);
6364
$this->assertEquals("Submitted", $invoiceQuery->status);
65+
$this->assertEquals("2019-11-07T10:56:54+00:00", $invoiceQuery->date);
6466
}
6567

6668
/**

0 commit comments

Comments
 (0)