Skip to content

Commit

Permalink
Skip test for invalid metadata due to cache issue (#2967)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkurdek authored Jan 29, 2025
1 parent fb2a61b commit 4e8f6ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Swift.Runtime/tests/MetadataTests/TypeMetadataTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public static void CannotGetOnUnknownInstance()
Assert.False(TypeMetadata.TryGetTypeMetadata<object>(out var md));
}

[Fact]
[Fact(Skip = "Wrong value can be read from the cache: https://github.com/dotnet/runtimelab/issues/2966")]
public static void FailsWhenMetadataIsNotValid()
{
Assert.False(TypeMetadata.TryGetTypeMetadata<AnyTypeMock>(out var md));
Expand Down

0 comments on commit 4e8f6ec

Please sign in to comment.