Skip to content

Commit

Permalink
Chsarpier
Browse files Browse the repository at this point in the history
  • Loading branch information
Theauxm committed Jul 11, 2024
1 parent 73fdd15 commit ed5860d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ChainSharp.Tests.Unit/UnitTests/ExtractTypeFromMemoryTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ public async Task TestValidExtractTypesFromMemory()

var workflow = new TestWorkflow().Activate(input, tupleInput);

List<Type> typesToExtract = [ typeof(bool), typeof(string), typeof(int) ];
List<Type> typesToExtract = [typeof(bool), typeof(string), typeof(int)];

// Act
var result = workflow.ExtractTypesFromMemory(typesToExtract);

Expand All @@ -113,7 +113,7 @@ public async Task TestValidExtractTypesFromMemory()
result.Should().Contain("hello");
result.Should().Contain(1);
}

[Theory]
public async Task TestInvalidExtractTypesFromMemory()
{
Expand All @@ -122,8 +122,8 @@ public async Task TestInvalidExtractTypesFromMemory()

var workflow = new TestWorkflow().Activate(input);

List<Type> typesToExtract = [ typeof(bool), typeof(string), typeof(int) ];
List<Type> typesToExtract = [typeof(bool), typeof(string), typeof(int)];

// Act
var result = workflow.ExtractTypesFromMemory(typesToExtract);

Expand Down

0 comments on commit ed5860d

Please sign in to comment.