Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmytro Ovcharov <dmytro.ovcharov@globallogic.com>2017-11-16 14:46:54 +0300
committerDmytro Ovcharov <dmytro.ovcharov@globallogic.com>2017-11-16 14:46:54 +0300
commita0be2b840b77b662a5679a78a22b4056e05e4ca3 (patch)
tree194ddecbaa0ed91abe54a56732bfb976e7f12115 /main/src/addins/MonoDevelop.UnitTesting.NUnit
parent32522e8a64d7fccab0bf38bf937bc51b9ea3558b (diff)
fixed wrong concatenation "namespaces" UnitTestGroups to "project" UnitTestGroups
Diffstat (limited to 'main/src/addins/MonoDevelop.UnitTesting.NUnit')
-rw-r--r--main/src/addins/MonoDevelop.UnitTesting.NUnit/MonoDevelop.UnitTesting.NUnit/NUnitTestSuite.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/main/src/addins/MonoDevelop.UnitTesting.NUnit/MonoDevelop.UnitTesting.NUnit/NUnitTestSuite.cs b/main/src/addins/MonoDevelop.UnitTesting.NUnit/MonoDevelop.UnitTesting.NUnit/NUnitTestSuite.cs
index 3f75c46b05..54268b3bf5 100644
--- a/main/src/addins/MonoDevelop.UnitTesting.NUnit/MonoDevelop.UnitTesting.NUnit/NUnitTestSuite.cs
+++ b/main/src/addins/MonoDevelop.UnitTesting.NUnit/MonoDevelop.UnitTesting.NUnit/NUnitTestSuite.cs
@@ -43,8 +43,9 @@ namespace MonoDevelop.UnitTesting.NUnit
this.testInfo = tinfo;
this.rootSuite = rootSuite;
this.TestId = tinfo.TestId;
- this.canMergeWithParent = string.IsNullOrEmpty (tinfo.FixtureTypeName) &&
- string.IsNullOrEmpty (tinfo.FixtureTypeNamespace);
+ this.canMergeWithParent = !string.IsNullOrEmpty (tinfo.PathName) &&
+ string.IsNullOrEmpty (tinfo.FixtureTypeName) &&
+ string.IsNullOrEmpty (tinfo.FixtureTypeNamespace);
}
bool canMergeWithParent;