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 a34d08c commit c2dc5e0Copy full SHA for c2dc5e0
tests/util.py
@@ -15,9 +15,9 @@ def get_windows_safe_factory(**execkwargs):
15
makekwargs = {'find_default_container': functools.partial(
16
force_default_container, windows_default_container_id),
17
'use_container': True}
18
- execkwargs['default_container': windows_default_container_id]
+ execkwargs['default_container'] = windows_default_container_id
19
else:
20
- opts = {}
+ makekwargs = {}
21
return Factory(makekwargs=makekwargs, **execkwargs)
22
23
def force_default_container(default_container_id, builder):
0 commit comments