From 05d21c52e4afda4c83cd5c4ce6ef4fcb0b3926f4 Mon Sep 17 00:00:00 2001 From: Diptanu Choudhury Date: Sun, 15 Nov 2015 00:41:56 -0800 Subject: [PATCH] Fixed the allocdir tests --- client/allocdir/alloc_dir_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/allocdir/alloc_dir_test.go b/client/allocdir/alloc_dir_test.go index f63073012..326e772b9 100644 --- a/client/allocdir/alloc_dir_test.go +++ b/client/allocdir/alloc_dir_test.go @@ -15,7 +15,7 @@ var ( t1 = &structs.Task{ Name: "web", Driver: "exec", - Config: map[string]string{ + Config: map[string]interface{}{ "command": "/bin/date", "args": "+%s", }, @@ -27,7 +27,7 @@ var ( t2 = &structs.Task{ Name: "web2", Driver: "exec", - Config: map[string]string{ + Config: map[string]interface{}{ "command": "/bin/date", "args": "+%s", },