diff --git a/test/Python/Poetry/CommonSpec.hs b/test/Python/Poetry/CommonSpec.hs index 9769e581a7..fb586c3f02 100644 --- a/test/Python/Poetry/CommonSpec.hs +++ b/test/Python/Poetry/CommonSpec.hs @@ -100,6 +100,7 @@ expectedPyProject = , devDependencies = Map.fromList [("pytest", PoetryTextVersion "*")] + , groupDevDependencies = Map.empty -- TODO: Fill in for real. } } diff --git a/test/Python/Poetry/PyProjectSpec.hs b/test/Python/Poetry/PyProjectSpec.hs index 244aa64923..4cd69dd277 100644 --- a/test/Python/Poetry/PyProjectSpec.hs +++ b/test/Python/Poetry/PyProjectSpec.hs @@ -77,6 +77,7 @@ expectedPyProject = , devDependencies = Map.fromList [("pytest", PoetryTextVersion "*")] + , groupDevDependencies = Map.empty -- TODO: Fill this in for realsies. } } diff --git a/test/Python/PoetrySpec.hs b/test/Python/PoetrySpec.hs index 66f15de435..bf91376e02 100644 --- a/test/Python/PoetrySpec.hs +++ b/test/Python/PoetrySpec.hs @@ -26,7 +26,7 @@ candidatePyProject :: PyProject candidatePyProject = PyProject (Just $ PyProjectBuildSystem "poetry.core.masonry.api") - (Just $ PyProjectPoetry Nothing Nothing Nothing (Map.fromList ([("flow_pipes", PoetryTextVersion "^1.21")])) Map.empty) + (Just $ PyProjectPoetry Nothing Nothing Nothing (Map.fromList ([("flow_pipes", PoetryTextVersion "^1.21")])) Map.empty Map.empty) Nothing Nothing