Skip to content

Commit

Permalink
Fixed copy'n error mistake in test.
Browse files Browse the repository at this point in the history
Also sneaking in a .gitignore change for vim.
  • Loading branch information
kojiashida committed Apr 8, 2013
1 parent 72d9352 commit 1ce174c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
third_party/*
templates/prod/*
.coverage
.viminfo
2 changes: 1 addition & 1 deletion data/classifiers/normalizers_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
assert normalizers.List(3.0) is None

assert normalizers.Coord2D('-1, 2.2') == [-1, 2.2]
assert normalizers.List('123') is None
assert normalizers.Coord2D('123') is None
assert normalizers.Coord2D([0, 1]) == [0, 1]
assert normalizers.Coord2D([0, 1, 2]) is None

Expand Down

0 comments on commit 1ce174c

Please sign in to comment.