Skip to content

Commit

Permalink
test compiles
Browse files Browse the repository at this point in the history
  • Loading branch information
skelterjohn committed Dec 16, 2011
1 parent fe1c93e commit 1348d3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rect_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 17,7 @@ func TestRectsIntersect(t *testing.T) {
if !r1.Max.QuadMM(r2.Min) {
t.Error("QuadMM")
}
if !r1.Contains(r2.Min) {
if !r1.ContainsCoord(r2.Min) {
t.Error("contains")
}
if !RectsIntersect(r1, r2) {
Expand All @@ -35,7 35,7 @@ func TestRectsIntersect(t *testing.T) {
if !r1.Max.QuadMM(r2.Min) {
t.Error("QuadMM2")
}
if !r1.Contains(r2.Min) {
if !r1.ContainsCoord(r2.Min) {
t.Error("contains2")
}
if !RectsIntersect(r1, r2) {
Expand Down

0 comments on commit 1348d3a

Please sign in to comment.