Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated property name for ipaddress #56

Merged
merged 3 commits into from
Jan 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ private static bool AssertExpectedAuthenticationEvent(AuthenticationEvent actual
Assert.Equal(expectedAuthenticationEvent.OrgNumber, actualAuthenticationEvent.OrgNumber);
Assert.Equal(expectedAuthenticationEvent.SupplierId, actualAuthenticationEvent.SupplierId);
Assert.Equal(expectedAuthenticationEvent.UserId, actualAuthenticationEvent.UserId);
Assert.Equal(expectedAuthenticationEvent.IpAdress, actualAuthenticationEvent.IpAdress);
Assert.Equal(expectedAuthenticationEvent.IpAddress, actualAuthenticationEvent.IpAddress);
return true;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public class AuthenticationEvent
/// <summary>
/// The ipadress of the authentication request
/// </summary>
public string? IpAdress { get; set; }
public string? IpAddress { get; set; }

/// <summary>
/// The authentication result
Expand Down
Loading