We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16b9015 commit 38d83a7Copy full SHA for 38d83a7
1 file changed
tests/pytests/unit/fileserver/test_roots.py
@@ -5,7 +5,6 @@
5
import copy
6
import os
7
import pathlib
8
-import re
9
import shutil
10
import sys
11
import textwrap
@@ -353,8 +352,3 @@ def test_relative_file_roots(tmp_state_tree):
353
352
ret = roots.find_file("testfile")
354
assert "testfile" == ret["rel"]
355
356
-
357
-def test_update_unexpected_kwargs():
358
- with pytest.raises(ValueError) as exc_info:
359
- ret = roots.update(foo="bar")
360
- assert re.match(r"Unexpected keyword arguments received:", str(exc_info.value))
0 commit comments