Skip to content

Commit 8857dc7

Browse files
authored
Merge pull request CloudBotIRC#125 from linuxdaemon/gonzobot+hook-tests
Fix type of ids for generated tests
2 parents 55333d8 + 703b14c commit 8857dc7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/core_tests/test_plugin_hooks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def load_plugin(plugin_path, monkeypatch):
4848
def pytest_generate_tests(metafunc):
4949
if 'plugin_path' in metafunc.fixturenames:
5050
paths = list(gather_plugins())
51-
metafunc.parametrize('plugin_path', paths, ids=paths)
51+
metafunc.parametrize('plugin_path', paths, ids=list(map(str, paths)))
5252

5353

5454
HOOK_ATTR_TYPES = {

0 commit comments

Comments
 (0)