Skip to content

Commit

Permalink
Recorder_Enumerable: Fix: Non-7.0 tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Rog-Wilhelm committed Sep 30, 2023
1 parent 1e2097e commit a32ddcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extra/recorder_enumerator/test/DelegateTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ public void FuncMultipleExternal([ValuesExcept(RecorderMode.Validation)] Recorde
public void FuncMultipleInternal([ValuesExcept(RecorderMode.Validation)] RecorderMode recorderMode)
{
// I'm slightly worried that the way I'm generating functions could create *one* function, then overwrite it, so here's a test for that.
var fa = () => 42;
var fb = () => 100;
Func<int> fa = () => 42;
Func<int> fb = () => 100;

var pair = (fa, fb);

Expand Down

0 comments on commit a32ddcf

Please sign in to comment.