Skip to content

Commit

Permalink
spelling: valid
Browse files Browse the repository at this point in the history
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
  • Loading branch information
jsoref committed Mar 4, 2024
1 parent 983cbf9 commit dd7024a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -92,7 +92,7 @@ public void Deserialize_GenericCommandType_Invalid_Success()
Value = new[] { GeneralCommandType.MoveUp, GeneralCommandType.MoveDown }
};

var value = JsonSerializer.Deserialize<GenericBodyArrayModel<GeneralCommandType>>(@"{ ""Value"": ""MoveUp,TotallyNotAVallidCommand,MoveDown"" }", _jsonOptions);
var value = JsonSerializer.Deserialize<GenericBodyArrayModel<GeneralCommandType>>(@"{ ""Value"": ""MoveUp,TotallyNotAValidCommand,MoveDown"" }", _jsonOptions);
Assert.Equal(desiredValue.Value, value?.Value);
}

Expand Down

0 comments on commit dd7024a

Please sign in to comment.