We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bbbe9c commit 4758a16Copy full SHA for 4758a16
datafusion/tests/test_functions.py
@@ -188,7 +188,9 @@ def test_math_functions():
188
np.testing.assert_array_almost_equal(result.column(32), np.sinh(values))
189
np.testing.assert_array_almost_equal(result.column(33), np.tanh(values))
190
np.testing.assert_array_almost_equal(result.column(34), math.factorial(6))
191
- np.testing.assert_array_almost_equal(result.column(35), np.isnan(na_values))
+ np.testing.assert_array_almost_equal(
192
+ result.column(35), np.isnan(na_values)
193
+ )
194
np.testing.assert_array_almost_equal(result.column(36), na_values == 0)
195
np.testing.assert_array_almost_equal(
196
result.column(37), np.emath.logn(3, values + 1.0)
0 commit comments