Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty1s committed Jun 20, 2022
1 parent 3e306f4 commit 4ea6807
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/transforms/test_random_jitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def test_random_jitter():
assert data.pos.max().item() <= 0.1

data = Data(pos=pos)
data = RandomJitter(0.1)(data)
data = RandomJitter([0.1, 1])(data)
assert len(data) == 1
assert data.pos[:, 0].min().item() >= -0.1
assert data.pos[:, 0].max().item() <= 0.1
Expand Down

0 comments on commit 4ea6807

Please sign in to comment.