From 7c76bc4bc98907cad3d34d47823717867bec5e6d Mon Sep 17 00:00:00 2001 From: ElektroKill Date: Sat, 26 Nov 2022 14:19:34 +0100 Subject: [PATCH] Enable Tuple pretty test for Roslyn version DefaultInterpolatedStringHandler is supported since commit f695bbc --- ICSharpCode.Decompiler.Tests/PrettyTestRunner.cs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/ICSharpCode.Decompiler.Tests/PrettyTestRunner.cs b/ICSharpCode.Decompiler.Tests/PrettyTestRunner.cs index 3d77b3fb5..d1dfd0774 100644 --- a/ICSharpCode.Decompiler.Tests/PrettyTestRunner.cs +++ b/ICSharpCode.Decompiler.Tests/PrettyTestRunner.cs @@ -1,4 +1,4 @@ -// Copyright (c) AlphaSierraPapa for the SharpDevelop Team +// Copyright (c) AlphaSierraPapa for the SharpDevelop Team // // Permission is hereby granted, free of charge, to any person obtaining a copy of this // software and associated documentation files (the "Software"), to deal in the Software @@ -560,12 +560,6 @@ namespace ICSharpCode.Decompiler.Tests [Test] public async Task TupleTests([ValueSource(nameof(roslyn2OrNewerOptions))] CompilerOptions cscOptions) { - if (cscOptions.HasFlag(CompilerOptions.UseRoslynLatest)) - { - Assert.Ignore("DefaultInterpolatedStringHandler is not yet supported!"); - return; - } - await RunForLibrary(cscOptions: cscOptions); }