about summary refs log tree commit diff
path: root/structs_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'structs_test.go')
-rw-r--r--structs_test.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/structs_test.go b/structs_test.go
index 685557b..108cbc3 100644
--- a/structs_test.go
+++ b/structs_test.go
@@ -48,6 +48,7 @@ func TestNewCoord(t *testing.T) {
 	t.Log(newCoordinate)
 }
 
+// TestBoundingBox creates a bounding box
 func TestBoundingBox(t *testing.T) {
 	var newBoundingBox = BoundingBox{
 		center: Coord{
@@ -70,7 +71,7 @@ func TestInsideOf(t *testing.T) {
 		halfDimension: 1,
 	}, 0)
 
-	var isInsideOf = testCoordinate.insideOf(testQuadTree)
+	var isInsideOf = testCoordinate.InsideOf(testQuadTree)
 	t.Log(isInsideOf)
 }