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

github.com/mono/debugger-libs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Karlaš <david.karlas@xamarin.com>2017-07-10 15:01:46 +0300
committerDavid Karlaš <david.karlas@xamarin.com>2017-07-10 15:01:46 +0300
commit8bab6021efe67c42c383c22049943561ab2f8937 (patch)
tree25d647f46895f7a67a38bd2e0ddfd8a881d73a39 /UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs
parentba6df7678590acc54ba32924299d194ba3a9a62a (diff)
Addressed PR comments
Fixed regression with ParentSource not being set anymore Typo in unit tests Too long line
Diffstat (limited to 'UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs')
-rw-r--r--UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs b/UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs
index a8db852..1717e2c 100644
--- a/UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs
+++ b/UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs
@@ -171,7 +171,7 @@ namespace MonoDevelop.Debugger.Tests.TestApp
string someString = "hi";
string[] numbers = { "one", "two", "three" };
- public (int a, string, double B) ProperyA => (1, "2", 3.3);
+ public (int a, string, double B) PropertyA => (1, "2", 3.3);
public (bool C, float, string d) FieldB;
public (TestEvaluation e, int f) MethodC () => (null, 3);