Browse Source

Fix non-passing test

(because the test itself was making an extraneous assertion)
Jocelyn Delalande 7 years ago
parent
commit
32f07a2644
1 changed files with 1 additions and 1 deletions
  1. 1 1
      coin/billing/tests.py

+ 1 - 1
coin/billing/tests.py

@@ -316,7 +316,7 @@ class InvoiceQuerySetTests(TestCase):
     @freeze_time('2016-01-01')
     def test_number_workflow(self):
         iv = Invoice.objects.create()
-        self.assertEqual(iv.number, 'DRAFT-1')
+        self.assertEqual(iv.number, 'DRAFT-{}'.format(iv.pk))
         iv.validate()
         self.assertRegexpMatches(iv.number, r'2016-01-000001$')