From 5f153b8a010600af8260f48e9dcc59c2d93de004 Mon Sep 17 00:00:00 2001 From: James Cole Date: Thu, 5 Jan 2017 08:45:01 +0100 Subject: [PATCH] Fix a test --- tests/acceptance/Controllers/BillControllerTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/acceptance/Controllers/BillControllerTest.php b/tests/acceptance/Controllers/BillControllerTest.php index efce584e0b..60a8388697 100644 --- a/tests/acceptance/Controllers/BillControllerTest.php +++ b/tests/acceptance/Controllers/BillControllerTest.php @@ -124,11 +124,11 @@ class BillControllerTest extends TestCase $data = [ 'name' => 'New Bill ' . rand(1000, 9999), 'match' => 'some words', - 'amount_min' => 100, + 'amount_min' => '100', 'amount_currency_id_amount_min' => 1, 'amount_currency_id_amount_max' => 1, 'skip' => 0, - 'amount_max' => 100, + 'amount_max' => '100', 'date' => '2016-01-01', 'repeat_freq' => 'monthly', ]; @@ -154,11 +154,11 @@ class BillControllerTest extends TestCase $data = [ 'name' => 'Updated Bill ' . rand(1000, 9999), 'match' => 'some more words', - 'amount_min' => 100, + 'amount_min' => '100', 'amount_currency_id_amount_min' => 1, 'amount_currency_id_amount_max' => 1, 'skip' => 0, - 'amount_max' => 100, + 'amount_max' => '100', 'date' => '2016-01-01', 'repeat_freq' => 'monthly', ];