Selaa lähdekoodia

Updated tests for the int rather than int64 update

David Thielemann 1 vuosi sitten
vanhempi
commit
991f3184cc
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      point_test.go

+ 2 - 2
point_test.go

@@ -267,8 +267,8 @@ func TestPoint2Within(t *testing.T) {
 
 	var (
 		tmp *Point = &Point{}
-		y   int64
-		x   int64
+		y   int
+		x   int
 	)
 	for y = 0; y <= 11; y++ {
 		for x = 0; x <= 11; x++ {