Skip to content

Commit

Permalink
Fix LiquidProjectProcessorTests
Browse files Browse the repository at this point in the history
  • Loading branch information
hishamco committed Jan 23, 2023
1 parent 45b895c commit cee3f96
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class LiquidProjectProcessorTests
public void ExtractsStringFromLiquidProperty()
{
// Act
_processor.Process("ProjectFiles", string.Empty, _localizableStrings);
_processor.Process("ProjectFiles", "DummyBasePath", _localizableStrings);

// Assert
Assert.Contains(_localizableStrings.Values, s => s.Text == "string in variable");
Expand All @@ -21,7 +21,7 @@ public void ExtractsStringFromLiquidProperty()
public void ExtractsStringFromLiquidExpression()
{
// Act
_processor.Process("ProjectFiles", string.Empty, _localizableStrings);
_processor.Process("ProjectFiles", "DummyBasePath", _localizableStrings);

// Assert
Assert.Contains(_localizableStrings.Values, s => s.Text == "string in expression");
Expand Down

0 comments on commit cee3f96

Please sign in to comment.