From e95ee43d5119db49279388b61f4574abf580cbb6 Mon Sep 17 00:00:00 2001 From: Rohit Waghchaure Date: Mon, 27 Jun 2016 17:28:48 +0530 Subject: [PATCH] [Fixes] Timesheet --- erpnext/projects/doctype/time_sheet/test_time_sheet.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/projects/doctype/time_sheet/test_time_sheet.py b/erpnext/projects/doctype/time_sheet/test_time_sheet.py index 23ead1548cb..ef3477c3234 100644 --- a/erpnext/projects/doctype/time_sheet/test_time_sheet.py +++ b/erpnext/projects/doctype/time_sheet/test_time_sheet.py @@ -72,12 +72,12 @@ def make_salary_structure(employee): salary_structure.set('deductions', []) es = salary_structure.append('earnings', { - "e_type": "_Test Allowance", + "earning_type": "_Test Allowance", "modified_value": 100 }) ds = salary_structure.append('deductions', { - "d_type": "_Test Professional Tax", + "deduction_type": "_Test Professional Tax", "d_modified_amt": 50 })