浏览代码

Updated tests for the int rather than int64 update

David Thielemann 1 年之前
父节点
当前提交
991f3184cc
共有 1 个文件被更改,包括 2 次插入2 次删除
  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++ {