Skip to content

Commit

Permalink
Update MergeMarkdownFragmentsTest.cs (dotnet#2720)
Browse files Browse the repository at this point in the history
  • Loading branch information
yufeih authored May 3, 2018
1 parent e9d6a77 commit b81aa82
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ overwrite in contents block
Assert.True(File.Exists(_rawModelFilePath));
var rawModel = JsonUtility.Deserialize<JObject>(_rawModelFilePath);
Assert.Equal("name overwrite", rawModel["name"]);
Assert.Equal($"<p sourcefile=\"{_inputFolder}/Suppressions.yml.md\" sourcestartlinenumber=\"1\">overwrite in yaml block</p>\n", rawModel["definitions"][0]["properties"][0]["description"].ToString());
Assert.Equal($"<p sourcefile=\"{_inputFolder}/Suppressions.yml.md\" sourcestartlinenumber=\"1\" sourceendlinenumber=\"1\">overwrite in yaml block</p>\n", rawModel["definitions"][0]["properties"][0]["description"].ToString());
Assert.Equal($"<p sourceFile=\"{_inputFolder}/Suppressions.yml.md\" sourceStartLineNumber=\"14\">overwrite in contents block</p>\n", rawModel["definitions"][0]["properties"][1]["description"].ToString());
}

Expand Down

0 comments on commit b81aa82

Please sign in to comment.