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

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Sadov <vsadov@microsoft.com>2018-04-05 06:14:46 +0300
committerGitHub <noreply@github.com>2018-04-05 06:14:46 +0300
commitd5cc5ce0e24d897567592f6a182bc050e98cb6bd (patch)
tree03f8ac0f23d0957f92d77b50f6be501c34a21e16
parentd1277aba0b62ec18d91d4f870bccb2b13afceff1 (diff)
parent14fbc9a2cd8be4a19a62dc728bffb45ccae97419 (diff)
Merge pull request #28832 from VSadov/unskipTest01
Enable skipped test.
-rw-r--r--src/System.Linq.Expressions/tests/Dynamic/ExpandoObjectTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/System.Linq.Expressions/tests/Dynamic/ExpandoObjectTests.cs b/src/System.Linq.Expressions/tests/Dynamic/ExpandoObjectTests.cs
index 851ae6ef16..5494717b6e 100644
--- a/src/System.Linq.Expressions/tests/Dynamic/ExpandoObjectTests.cs
+++ b/src/System.Linq.Expressions/tests/Dynamic/ExpandoObjectTests.cs
@@ -64,7 +64,7 @@ namespace System.Dynamic.Tests
Assert.Equal(Enumerable.Repeat(new KeyValuePair<string, object>("key", 2), 1), eo);
}
- [Fact, ActiveIssue(13541)]
+ [Fact]
public void DictionaryMatchesProperties()
{
dynamic eo = new ExpandoObject();