Testcase fixes (#11238)

* Restaurant test records fixed

* Fixes for test cases
This commit is contained in:
Nabin Hait
2017-10-18 10:52:48 +05:30
committed by GitHub
parent 44734049f5
commit a9feddbb79
4 changed files with 4 additions and 8 deletions

View File

@@ -8,9 +8,9 @@ import unittest
test_records = [
dict(doctype='Restaurant', name='Test Restaurant 1', company='_Test Company 1',
invoice_series_prefix='Test-Rest-1-Inv-', defaut_customer='_Test Customer 1'),
invoice_series_prefix='Test-Rest-1-Inv-', default_customer='_Test Customer 1'),
dict(doctype='Restaurant', name='Test Restaurant 2', company='_Test Company 1',
invoice_series_prefix='Test-Rest-2-Inv-', defaut_customer='_Test Customer 1'),
invoice_series_prefix='Test-Rest-2-Inv-', default_customer='_Test Customer 1'),
]
class TestRestaurant(unittest.TestCase):