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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Strehovský <MichalStrehovsky@users.noreply.github.com>2017-10-18 16:45:38 +0300
committerGitHub <noreply@github.com>2017-10-18 16:45:38 +0300
commit5035c81dfe0a5c66880bb8faca2ca86c998ca7a0 (patch)
tree6453a8c716ad12700e09b8b2bbd8a9392df2706e /src/ILCompiler.TypeSystem
parent087d5a0b975b0391283c4d544848ce7e9824d50c (diff)
Assembly-qualify type names in repro arguments (#4754)
Diffstat (limited to 'src/ILCompiler.TypeSystem')
-rw-r--r--src/ILCompiler.TypeSystem/tests/TypeNameParsingTests.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ILCompiler.TypeSystem/tests/TypeNameParsingTests.cs b/src/ILCompiler.TypeSystem/tests/TypeNameParsingTests.cs
index e366f0744..392eb0bce 100644
--- a/src/ILCompiler.TypeSystem/tests/TypeNameParsingTests.cs
+++ b/src/ILCompiler.TypeSystem/tests/TypeNameParsingTests.cs
@@ -282,14 +282,14 @@ namespace TypeSystemTests
{
{
var fmt = new CustomAttributeTypeNameFormatter((IAssemblyDesc)_testModule);
- string formatted = fmt.FormatName(type);
+ string formatted = fmt.FormatName(type, true);
TypeDesc roundTripped = _testModule.GetTypeByCustomAttributeTypeName(formatted);
Assert.Equal(type, roundTripped);
}
{
var fmt = new CustomAttributeTypeNameFormatter();
- string formatted = fmt.FormatName(type);
+ string formatted = fmt.FormatName(type, true);
TypeDesc roundTripped = _testModule.GetTypeByCustomAttributeTypeName(formatted);
Assert.Equal(type, roundTripped);
}