From 8f071af11e9e52621484fc5c03e54f5dba91c06b Mon Sep 17 00:00:00 2001 From: DanB Date: Mon, 23 Mar 2015 18:26:27 +0100 Subject: [PATCH] Correction in call tests --- general_tests/tutorial_fs_calls_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/general_tests/tutorial_fs_calls_test.go b/general_tests/tutorial_fs_calls_test.go index 91c9dc5b3..3c920bd85 100644 --- a/general_tests/tutorial_fs_calls_test.go +++ b/general_tests/tutorial_fs_calls_test.go @@ -195,8 +195,8 @@ func TestTutFsCallsCdrs1001(t *testing.T) { if reply[0].Subject != "1002" { t.Errorf("Unexpected Subject for CDR: %+v", reply[0]) } - if reply[0].Cost != 0.3059 { - t.Errorf("Unexpected Cost for CDR: %+v", reply[0]) + if reply[0].Cost != 1.2059 { + t.Errorf("Unexpected Cost for CDR: %+v", reply[0].Cost) } } }