Skip to content

Commit

Permalink
Merge pull request aimacode#112 from youthinkk/test_cases
Browse files Browse the repository at this point in the history
Remove test_vector_clip() in utils_test.py
  • Loading branch information
norvig committed Mar 10, 2016
2 parents 289f4bf + 5c76989 commit 630b63c
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tests/utils_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,6 @@ def test_clip():
assert [clip(x, 0, 1) for x in [-1, 0.5, 10]] == [0, 0.5, 1]


def test_vector_clip():
assert vector_clip((-1, 10), (0, 0), (9, 9)) == (0, 9)


def test_caller():
assert caller(0) == 'caller'

Expand Down

0 comments on commit 630b63c

Please sign in to comment.