1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-04 01:24:09 +02:00

fix tests

This commit is contained in:
Robin Appelman 2026-03-10 14:09:11 +01:00
commit 87de2dbb21
2 changed files with 11 additions and 11 deletions

View file

@ -36,7 +36,7 @@ impl FromStr for PhpVersion {
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s {
"8" => Ok(PhpVersion::Php81),
"8" => Ok(PhpVersion::Php80),
"8.0" => Ok(PhpVersion::Php80),
"8.1" => Ok(PhpVersion::Php81),
"8.2" => Ok(PhpVersion::Php82),