Skip to content

Commit cd2c8d7

Browse files
committed
Remove more Skip attributes
1 parent c1dfd1b commit cd2c8d7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Tests/CollectionRuleActions.UnitTests/ActionListExecutorTests.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,13 +122,13 @@ await TestHostHelper.CreateCollectionRulesHost(_outputHelper, rootOptions =>
122122
});
123123
}
124124

125-
[Fact(Skip = "https://github.com/dotnet/aspnetcore/issues/61379")]
125+
[Fact]
126126
public Task ActionListExecutor_FirstActionFail_DeferredCompletion()
127127
{
128128
return ActionListExecutor_FirstActionFail(waitForCompletion: false);
129129
}
130130

131-
[Fact(Skip = "https://github.com/dotnet/aspnetcore/issues/61379")]
131+
[Fact]
132132
public Task ActionListExecutor_FirstActionFail_WaitedCompletion()
133133
{
134134
return ActionListExecutor_FirstActionFail(waitForCompletion: true);
@@ -189,6 +189,7 @@ await TestHostHelper.CreateCollectionRulesHost(_outputHelper, rootOptions =>
189189
serviceCollection.RegisterCollectionRuleAction<PassThroughActionFactory, PassThroughOptions, PassThroughActionDescriptor>();
190190
});
191191
}
192+
192193
private static void VerifyStartCallbackCount(bool waitForCompletion, int callbackCount)
193194
{
194195
//Currently, any attempt to wait on completion will automatically trigger the start callback.

0 commit comments

Comments
 (0)