From 5406f32643b7df3fa7787d87a71c18b9075f8d60 Mon Sep 17 00:00:00 2001 From: Christopher Sasarak Date: Thu, 29 Feb 2024 17:17:33 -0600 Subject: [PATCH] Make unit tests compile, but they don't test the new stuff. --- test/Python/Poetry/CommonSpec.hs | 1 + test/Python/Poetry/PyProjectSpec.hs | 1 + test/Python/PoetrySpec.hs | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) 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