shithub: hugo

Download patch

ref: 6dbae7b67154f864b29ea90646f78f15c96db5f2
parent: d770130530a3b170a71954ce806975be862f11ba
author: Bjørn Erik Pedersen <[email protected]>
date: Thu Mar 24 15:57:26 EDT 2016

Be explicit about the type in Scratch test

A puzzle, but it sometimes produces a int64 as it is now.

--- a/hugolib/scratch_test.go
+++ b/hugolib/scratch_test.go
@@ -88,12 +88,12 @@
 	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 @@
 
 				val := scratch.Get(key)
 
-				if counter, ok := val.(int); ok {
+				if counter, ok := val.(int64); ok {
 					if counter < 1 {
 						t.Errorf("Got %d", counter)
 					}