Skip to content

Commit

Permalink
deprecated function in test
Browse files Browse the repository at this point in the history
  • Loading branch information
icedcoffeeee committed Apr 12, 2024
1 parent fe2aeea commit d360bf8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test_wave.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
@frames_comparison()
def test_linearwave(scene):
wave = LinearWave()
wave.set_time(2)
wave.set(time=2)
scene.add(wave)


Expand All @@ -21,7 +21,7 @@ def test_radialwave(scene):
checkerboard_colors=[BLUE_D],
stroke_width=0,
)
wave.set_time(2)
wave.set(time=2)
scene.add(wave)


Expand All @@ -37,3 +37,4 @@ def test_standingwave(scene):
for wave in waves:
wave.start_wave()
scene.wait()

0 comments on commit d360bf8

Please sign in to comment.