Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Romfos committed Nov 27, 2023
1 parent 14a2305 commit 85d1852
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/AutoTests.Framework/Models/Model.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ private async Task<T> ConvertToObject<T>(IEnumerable<KeyValuePair<string, string
{
var name = keyValuePair.Key;
var value = keyValuePair.Value;
var properyName = await expressionService.ExecuteAsync<string>(name);
var propertyName = await expressionService.ExecuteAsync<string>(name);
var propertyValue = await expressionService.ExecuteAsync<object?>(value);
properties[properyName] = propertyValue;
properties[propertyName] = propertyValue;
}

return ConvertToObject<T>(properties);
Expand Down

0 comments on commit 85d1852

Please sign in to comment.