File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -49,8 +49,8 @@ def test_default_ctor(mocker):
49
49
50
50
fe .ServiceXDataset ("localds://dude" , "uproot-ftw" , config_adaptor = config )
51
51
52
- config .get_servicex_adaptor_config .assert_called_with ("uproot-ftw" )
53
- config .get_default_returned_datatype .assert_called_with ("uproot-ftw" )
52
+ config .get_servicex_adaptor_config .assert_called_with ("uproot-ftw" , backend_type = None )
53
+ config .get_default_returned_datatype .assert_called_with ("uproot-ftw" , backend_type = None )
54
54
55
55
56
56
def test_sx_name (mocker ):
@@ -79,8 +79,8 @@ def test_default_ctor_no_type(mocker):
79
79
80
80
fe .ServiceXDataset ("localds://dude" , config_adaptor = config )
81
81
82
- config .get_servicex_adaptor_config .assert_called_with (None )
83
- config .get_default_returned_datatype .assert_called_with (None )
82
+ config .get_servicex_adaptor_config .assert_called_with (None , backend_type = None )
83
+ config .get_default_returned_datatype .assert_called_with (None , backend_type = None )
84
84
85
85
86
86
def test_default_ctor_cache (mocker ):
You can’t perform that action at this time.
0 commit comments