Skip to content

Commit

Permalink
fix: bug in parens
Browse files Browse the repository at this point in the history
  • Loading branch information
beckermr authored Aug 22, 2024
1 parent 414c8ab commit 9cd8ab2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_celestial_galsim.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def test_angle():
assert_raises(TypeError,galsim.AngleUnit, 1, 3)
assert_raises(TypeError,galsim.Angle, 3.4)
assert_raises(TypeError,galsim.Angle, theta1, galsim.degrees)
assert_raises((ValueError, TypeError), galsim.Angle, 'spam'))
assert_raises((ValueError, TypeError), galsim.Angle, 'spam')
assert_raises(TypeError,galsim.Angle, 1, 3)


Expand Down

0 comments on commit 9cd8ab2

Please sign in to comment.