Skip to content

Commit 150e59a

Browse files
committed
[FIX] point_of_sale: don't equalitate a date and a datetime
Normally a `date` and a `datetime` compare `False`. For some reason however a `datetime` and a `freezegun.api.FakeDate` compare equal as long as the datetime's date part matches the fakedate's... until Python 3.13, when it stop working. I've no idea why it ever worked, but it's completely unnecessary, we can just get the reference datetime's `date()` part and compare that to the date. upstream issue: spulec/freezegun#568
1 parent 2a11812 commit 150e59a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addons/point_of_sale/tests/test_pos_basic_config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -986,7 +986,7 @@ def _before_closing_cb():
986986
# Check the credit note
987987
self.assertTrue(return_to_invoice.account_move, 'Invoice should be created.')
988988
self.assertEqual(return_to_invoice.account_move.move_type, 'out_refund', 'Invoice should be a credit note.')
989-
self.assertEqual(return_to_invoice.account_move.invoice_date, new_session_date, 'Invoice date should be the same as the session it is created in.')
989+
self.assertEqual(return_to_invoice.account_move.invoice_date, new_session_date.date(), 'Invoice date should be the same as the session it is created in.')
990990
self.assertRecordValues(return_to_invoice.account_move, [{
991991
'amount_untaxed': 30,
992992
'amount_tax': 0,

0 commit comments

Comments
 (0)