From 7370e071d82b7d7d2b2cdf4b3add1ca066fbf9c1 Mon Sep 17 00:00:00 2001 From: Ben Mares Date: Sat, 7 Sep 2024 01:36:29 +0200 Subject: [PATCH] Adjust tests to account for == --- tests/test_conda_lock.py | 2 +- tests/test_regression.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_conda_lock.py b/tests/test_conda_lock.py index 116f1acd..6374e911 100644 --- a/tests/test_conda_lock.py +++ b/tests/test_conda_lock.py @@ -447,7 +447,7 @@ def test_parse_environment_file_with_pip(pip_environment: Path): manager="pip", category="main", extras=[], - version="=0.9.1", + version="==0.9.1", ) ] diff --git a/tests/test_regression.py b/tests/test_regression.py index d602e30b..3d163183 100644 --- a/tests/test_regression.py +++ b/tests/test_regression.py @@ -105,6 +105,6 @@ def test_pip_environment_regression_gh449(pip_environment_regression_gh449: Path manager="pip", category="main", extras=["dotenv", "email"], - version="=1.10.10", + version="==1.10.10", ) ]