Skip to content

Commit

Permalink
reenable disabled tests referencing closed issues (#324)
Browse files Browse the repository at this point in the history
in this process some closed issues were reopened
  • Loading branch information
adrianoc-unity3d committed Nov 27, 2024
1 parent 0640e89 commit 1343f48
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class MiscTestCase : ResourceTestBase
[TestCase("Parameters")]
[TestCase("Parameters2")]
[TestCase("LocalVariables")]
[TestCase("OnFields", Ignore = "Generates invalid code. See https://github.com/adrianoc/cecilifier/issues/61")]
[TestCase("OnFields")]
public void TestDelegateInvocation(string storageType)
{
AssertResourceTest($"Misc/DelegateInvocation_{storageType}");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ void AssertConversionIsApplied(string targetType, string items, string elementTy
using System;
{{targetType}} items = {{items}};
// We can´t use a foreach (to simplify the code) due to issue #306
// We can´t use a foreach (to simplify the code) due to problems
for(var i = 0; i < {{lengthExtractor}}; i++) System.Console.Write(items[i]);
struct Foo
{
public Foo(int i) => Value = i;
Expand Down

0 comments on commit 1343f48

Please sign in to comment.