Skip to content

Commit

Permalink
[tests] Fix TestAngularVelocity
Browse files Browse the repository at this point in the history
  • Loading branch information
holl- committed Jan 3, 2024
1 parent c7d0b4f commit 3359223
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/commit/field/test__angular_velocity.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ class TestAngularVelocity(TestCase):

def test_sample_at(self):
field = AngularVelocity(location=vec(x=0, y=0))
self.assertEqual(channel(vector='x,y'), field.shape.channel)
field @ CenteredGrid(0, x=4, y=3)
self.assertEqual(channel(vector='x,y'), (field @ CenteredGrid(0, x=4, y=3)).shape.channel)
field @ StaggeredGrid(0, x=4, y=3)

0 comments on commit 3359223

Please sign in to comment.