Skip to content

Commit

Permalink
Fix test build
Browse files Browse the repository at this point in the history
  • Loading branch information
FernandoRojo committed Oct 24, 2024
1 parent 6b53421 commit 6b82fb3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public void DeserializePnpmYamlFileV3()
shrinkwrapMinorVersion: 7
shrinkwrapVersion: 3";
var pnpmParsingUtilities = PnpmParsingUtilitiesFactory.Create<PnpmYamlV5>();
var version = pnpmParsingUtilities.DeserializePnpmYamlFileVersion(yamlFile);
var version = PnpmParsingUtilitiesFactory.DeserializePnpmYamlFileVersion(yamlFile);
version.Should().BeNull(); // Versions older than 5 report null as they don't use the same version field.
var parsedYaml = pnpmParsingUtilities.DeserializePnpmYamlFile(yamlFile);

Expand Down

0 comments on commit 6b82fb3

Please sign in to comment.