Skip to content

Commit 32a21d7

Browse files
fyellinmhostetter
authored andcommitted
Fix Ruff error.
1 parent 08bc9a8 commit 32a21d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/fields/test_arithmetic.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def test_log(field_log):
206206
assert np.array_equal(z, Z)
207207
z = x.log()
208208
assert np.array_equal(z, Z)
209-
#Bug 599. Make sure log() works for scalar inputs.
209+
# Bug 599. Make sure log() works for scalar inputs.
210210
assert x[0].log() == Z[0]
211211

212212

@@ -219,7 +219,7 @@ def test_log_different_base(field_log):
219219
beta = GF.primitive_elements[-1]
220220
z = x.log(beta)
221221
assert np.array_equal(beta**z, x)
222-
#Bug 599. Make sure log() works for scalar inputs.
222+
# Bug 599. Make sure log() works for scalar inputs.
223223
assert beta ** (x[0].log(beta)) == x[0]
224224

225225

0 commit comments

Comments
 (0)