Be explicit about the type in Scratch test
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 24 Mar 2016 18:57:26 +0000 (19:57 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 24 Mar 2016 18:57:26 +0000 (19:57 +0100)
A puzzle, but it sometimes produces a int64 as it is now.

hugolib/scratch_test.go

index 8bc5db0164b66ac56e33dc345c296e8f0d638253..e7b04d3ab72f791f5d1333409a4993c86b5abc45 100644 (file)
@@ -88,12 +88,12 @@ func TestScratchInParallel(t *testing.T) {
        var wg sync.WaitGroup
        scratch := newScratch()
        key := "counter"
-       scratch.Set(key, 1)
+       scratch.Set(key, int64(1))
        for i := 1; i <= 10; i++ {
                wg.Add(1)
                go func(j int) {
                        for k := 0; k < 10; k++ {
-                               newVal := k + j
+                               newVal := int64(k + j)
 
                                _, err := scratch.Add(key, newVal)
                                if err != nil {
@@ -104,7 +104,7 @@ func TestScratchInParallel(t *testing.T) {
 
                                val := scratch.Get(key)
 
-                               if counter, ok := val.(int); ok {
+                               if counter, ok := val.(int64); ok {
                                        if counter < 1 {
                                                t.Errorf("Got %d", counter)
                                        }