Merge remote-tracking branch 'origin/d16-2' into xharness-old-simulators-d16-2

This commit is contained in:
Rolf Bjarne Kvinge 2019-05-09 21:44:26 +02:00
Родитель 25e9918b17 f5561c2a24
Коммит 55df161d6a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -46,7 +46,7 @@ namespace xharness
var doc = new XmlDocument ();
doc.Load (reader);
var rv = new List<string> ();
foreach (XmlNode node in doc.SelectNodes ("/root/labels/name")) {
foreach (XmlNode node in doc.SelectNodes ("/root/labels/item/name")) {
rv.Add (node.InnerText);
}
return rv;