From d48ee01bd2a0a021095845251d5d7b663286982f Mon Sep 17 00:00:00 2001 From: Alex Dadgar Date: Mon, 22 Feb 2016 13:24:26 -0800 Subject: [PATCH] format --- scheduler/util_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scheduler/util_test.go b/scheduler/util_test.go index 7aaba9600..0719cc5fb 100644 --- a/scheduler/util_test.go +++ b/scheduler/util_test.go @@ -748,10 +748,10 @@ func TestProgressMade(t *testing.T) { } both := &structs.PlanResult{ NodeAllocation: m, - NodeUpdate: m, + NodeUpdate: m, } - update := &structs.PlanResult{ NodeUpdate: m } - alloc := &structs.PlanResult{ NodeAllocation: m } + update := &structs.PlanResult{NodeUpdate: m} + alloc := &structs.PlanResult{NodeAllocation: m} if !(progressMade(both) && progressMade(update) && progressMade(alloc)) { t.Fatal("bad") }