From 0d0a1f59ebe2d8d7bac77c93b40306be5655de23 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Mon, 2 Jan 2017 08:58:14 +0100 Subject: [PATCH] [xharness] Don't hit the network to load xml files. (#1415) --- tests/xharness/GitHub.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/xharness/GitHub.cs b/tests/xharness/GitHub.cs index f4f41cbabb..40990fc509 100644 --- a/tests/xharness/GitHub.cs +++ b/tests/xharness/GitHub.cs @@ -178,7 +178,7 @@ namespace xharness } } - doc.Load (path); + doc.LoadWithoutNetworkAccess (path); return doc; } }