diff --git a/tests/testsuite/python.rs b/tests/testsuite/python.rs index b667958e..a432f5fe 100644 --- a/tests/testsuite/python.rs +++ b/tests/testsuite/python.rs @@ -103,7 +103,7 @@ fn folder_with_setup_py() -> io::Result<()> { .output()?; let actual = String::from_utf8(output.stdout).unwrap(); - let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.7.5")); + let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.7.6")); assert_eq!(expected, actual); Ok(()) } @@ -120,7 +120,7 @@ fn folder_with_init_py() -> io::Result<()> { .output()?; let actual = String::from_utf8(output.stdout).unwrap(); - let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.7.5")); + let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.7.6")); assert_eq!(expected, actual); Ok(()) } @@ -212,7 +212,7 @@ fn disabled_scan_for_pyfiles_and_folder_with_setup_py() -> io::Result<()> { .output()?; let actual = String::from_utf8(output.stdout).unwrap(); - let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.7.5")); + let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.7.6")); assert_eq!(expected, actual); Ok(()) }