From f6b132f78e7b5c4db04455b632721d20856ddbb5 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 14 Sep 2017 11:55:31 +0530 Subject: [PATCH] Update test_quotation.js --- erpnext/selling/doctype/quotation/tests/test_quotation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/selling/doctype/quotation/tests/test_quotation.js b/erpnext/selling/doctype/quotation/tests/test_quotation.js index 4e7afe336d..1683fa5688 100644 --- a/erpnext/selling/doctype/quotation/tests/test_quotation.js +++ b/erpnext/selling/doctype/quotation/tests/test_quotation.js @@ -39,7 +39,7 @@ QUnit.test("test: quotation", function (assert) { assert.ok(cur_frm.doc.contact_display == "Contact 1", "Contact info changed"); // Check Currency - assert.ok(cur_frm.doc_currency == "USD", "Currency Changed"); + assert.ok(cur_frm.doc.currency == "USD", "Currency Changed"); assert.ok(cur_frm.doc.selling_price_list == "Test-Selling-USD", "Price List Changed"); assert.ok(cur_frm.doc.items[0].rate == 200, "Price Changed Manually"); assert.equal(cur_frm.doc.total, 1000, "New Total Calculated");