From c52dc666092c6e9bc3bd141a2000563426282fea Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Thu, 7 Nov 2019 23:53:02 +0100 Subject: [PATCH] TT#69200 Use correct variable in _create_cftimeset() sub Change-Id: Ia2f111a2fbdb05b06a55b82ce1d5daa4d1f3c7fd (cherry picked from commit 9cca145beb9eda19fe43aa2919addc3cbdb9a937) --- lib/NGCP/BulkProcessor/Projects/t/create_subscriber.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/NGCP/BulkProcessor/Projects/t/create_subscriber.t b/lib/NGCP/BulkProcessor/Projects/t/create_subscriber.t index 1cadafd..e24c0db 100644 --- a/lib/NGCP/BulkProcessor/Projects/t/create_subscriber.t +++ b/lib/NGCP/BulkProcessor/Projects/t/create_subscriber.t @@ -153,7 +153,7 @@ sub _create_cftimeset { $req->content(JSON::to_json({ name => "cf_time_set_".$t, subscriber_id => $subscriber->{id}, - times => \@times, + times => $times, })); $res = $ua->request($req); is($res->code, 201, "create test cftimeset");