Skip to content

Commit 46d1e8c

Browse files
committed
Update unit test text to match in multiple versions of python
1 parent 3791819 commit 46d1e8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/datafusion/tests/test_udaf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ def test_errors(df):
8989
df = df.aggregate([], [accum(column("a"))])
9090

9191
msg = (
92-
"Execution error: TypeError: Can't instantiate abstract class MissingMethods "
93-
"without an implementation for abstract methods 'evaluate', 'merge', 'update'"
92+
"Can't instantiate abstract class MissingMethods without an implementation "
93+
"for abstract methods 'evaluate', 'merge', 'update'"
9494
)
9595
with pytest.raises(Exception, match=msg):
9696
df.collect()

0 commit comments

Comments
 (0)