Skip to content

Commit

Permalink
Fixed a unit test broken in daemon tests after introducing the Archiv…
Browse files Browse the repository at this point in the history
…ed event
  • Loading branch information
jeremydmiller committed Dec 12, 2024
1 parent e963df4 commit c505ede
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DaemonTests/event_projections_end_to_end.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public void uses_event_type_filter()
.OfType<EventTypeFilter>()
.Single();

filter.EventTypes.Single().ShouldBe(typeof(Travel));
filter.EventTypes.Where(x => x != typeof(Archived)).Single().ShouldBe(typeof(Travel));
}

#region sample_using_WaitForNonStaleProjectionDataAsync
Expand Down

0 comments on commit c505ede

Please sign in to comment.