Gabriel Sailer
Results
1
comments of
Gabriel Sailer
Considering the original issue maybe you could go for a test similar to this one: ```python def test_get_unknown_key(c): result = delayed(add)(1, 2) graph = result.__dask_graph__() with pytest.raises(KeyError): c.get(graph, ["does_not_exist"]) ```