From 4e6dcf0132f4663b4cc8cf30a1d6097956ff7711 Mon Sep 17 00:00:00 2001 From: Ruben Arts Date: Fri, 30 Aug 2024 11:25:29 +0200 Subject: [PATCH] fix: test --- tests/install_tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/install_tests.rs b/tests/install_tests.rs index 2274b015e..b7385eb2f 100644 --- a/tests/install_tests.rs +++ b/tests/install_tests.rs @@ -500,7 +500,7 @@ async fn minimal_lockfile_update_pypi() { assert!(lock.contains_pep508_requirement( consts::DEFAULT_ENVIRONMENT_NAME, Platform::current(), - pep508_rs::Requirement::from_str("click==7.1.2").unwrap() + pep508_rs::Requirement::from_str("click>7.1.2").unwrap() )); }