Skip to content

Commit

Permalink
[xharness] Fix compiler warning. (#9147)
Browse files Browse the repository at this point in the history
  • Loading branch information
rolfbjarne authored and mandel-macaque committed Oct 21, 2020
1 parent 17728e3 commit 5d8f06f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ static TrxTests ParseTrxXml (XmlReader reader)
{
var rv = new TrxTests ();
var tests = new Dictionary<string, TrxTest> ();
TrxTest lastTest = null;
TrxTest? lastTest = null;
while (reader.Read ()) {
if (reader.NodeType != XmlNodeType.Element)
continue;
Expand Down

0 comments on commit 5d8f06f

Please sign in to comment.