Fix matrix testing with single selector that has multiple versions

This commit is contained in:
Andy Wilkinson
2019-06-18 12:06:20 +01:00
parent aee49b8511
commit 82f3b250e8

View File

@@ -74,9 +74,6 @@ public class MatrixTestExtension {
}
List<List<Map<String, String>>> cartesianProduct(List<List<Map<String, String>>> lists) {
if (lists.size() == 1) {
return lists
}
return cartesianProduct(lists, 0)
}