Skip to content

Commit

Permalink
Fixed tuple test
Browse files Browse the repository at this point in the history
  • Loading branch information
Theauxm committed Jul 11, 2024
1 parent 12af6d4 commit 5cc7932
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ChainSharp.Tests.Unit/UnitTests/Workflow/ActivateTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,15 @@ public async Task TestActivateTestsTupleInput()
// Arrange
var inputObject = new object();
var input = (1, inputObject);
var workflow = new TestWorkflow();
var workflow = new TestTupleWorkflow();

// Act
workflow.Activate(input, 2, "hello", false);

// Assert
workflow.Memory.Should().NotBeNull();
workflow.Memory.Count.Should().Be(5);
workflow.Memory.Should().ContainValue(input);
workflow.Memory.Should().ContainValue(inputObject);
workflow.Memory.Should().ContainValue(2);
workflow.Memory.Should().ContainValue(false);
workflow.Memory.Should().ContainValue("hello");
Expand Down

0 comments on commit 5cc7932

Please sign in to comment.