Skip to content

Commit 0b3799e

Browse files
committed
Fix typo
1 parent 6115503 commit 0b3799e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Rsk.AuthZen.Client.Test/AuthZenBoxCarOptionsTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ public void ToDto_WhenCalled_ShouldTranslateSemanticsCorrectly(BoxcarSemantics s
2222

2323
AuthZenBoxcarOptionsDto dto = sut.ToDto();
2424

25-
dto.Evaluation_semantics.Should().Be(expectedDtoValue);
25+
dto.Evaluations_semantic.Should().Be(expectedDtoValue);
2626
}
2727
}

Rsk.AuthZen.Client/AuthZenBoxcarEvaluationBody.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ internal AuthZenBoxcarOptionsDto ToDto()
138138
{
139139
return new AuthZenBoxcarOptionsDto
140140
{
141-
Evaluation_semantics = ConvertSemantics(Semantics)
141+
Evaluations_semantic = ConvertSemantics(Semantics)
142142
};
143143
}
144144

Rsk.AuthZen.Client/DTOs/AuthZenBoxcarRequestMessageDto.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ internal class AuthZenBoxcarRequestMessageDto : AuthZenRequestMessageDto
88

99
internal class AuthZenBoxcarOptionsDto
1010
{
11-
public string Evaluation_semantics { get; set; }
11+
public string Evaluations_semantic { get; set; }
1212
}
1313
}

0 commit comments

Comments
 (0)