Skip to content

Commit

Permalink
fix forgotten path.combine suggestion for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
abaskk-msft committed Jun 28, 2024
1 parent 34101e5 commit f09ded0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/YamlValidator.Tests/ValidatorTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class ValidatorTest
public ValidatorTest()
{
var schemaFileLoader = new SchemaLoader();
_schema = schemaFileLoader.Load(Path.Combine(Constants.DefaultSchemaPath));
_schema = schemaFileLoader.Load(Constants.DefaultSchemaPath);
var resultVerbosity = new VerbosityData(Constants.Verbose);
_yamlValidator = new Validator(resultVerbosity.EvalOptions, resultVerbosity.JsonOutputOptions);
}
Expand Down

0 comments on commit f09ded0

Please sign in to comment.