Skip to content

Commit 82da181

Browse files
committed
Swapped Cyrillic Latin Ok
1 parent 9ce31ec commit 82da181

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

test/MyTested.AspNetCore.Mvc.Models.Test/BuildersTests/ActionResultsTests/OkTests/OkTestBuilderTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public void WithNoResponseModelShouldNotThrowExceptionIfNoResponseModelIsProvide
1616
.Instance()
1717
.Calling(c => c.OkResultAction())
1818
.ShouldReturn()
19-
.Ok(ок => ок
19+
.Ok(ok => ok
2020
.WithNoModel());
2121
}
2222

@@ -30,7 +30,7 @@ public void WithNoResponseModelShouldThrowExceptionIfResponseModelIsProvided()
3030
.Instance()
3131
.Calling(c => c.OkResultWithResponse())
3232
.ShouldReturn()
33-
.Ok(ок => ок
33+
.Ok(ok => ok
3434
.WithNoModel());
3535
},
3636
"When calling OkResultWithResponse action in MvcController expected to not have a response model but in fact such was found.");
@@ -46,7 +46,7 @@ public void WithResponseModelShouldWorkCorrectly()
4646
.NoActionAttributes()
4747
.AndAlso()
4848
.ShouldReturn()
49-
.Ok(ок => ок
49+
.Ok(ok => ok
5050
.WithModelOfType<List<ResponseModel>>());
5151
}
5252

@@ -60,7 +60,7 @@ public void WithResponseModelOfTypeShouldWorkCorrectly()
6060
.NoActionAttributes()
6161
.AndAlso()
6262
.ShouldReturn()
63-
.Ok(ок => ок
63+
.Ok(ok => ok
6464
.WithModelOfType(typeof(IList<>))
6565
.AndAlso()
6666
.ShouldPassForThe<ICollection<ResponseModel>>(m => m != null));

test/MyTested.AspNetCore.Mvc.Models.Test/BuildersTests/ModelsTests/ResponseModelDetailsTestBuilderTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public void WithResponseModelShouldNotThrowExceptionWithCorrectAssertions()
1818
.Instance()
1919
.Calling(c => c.OkResultWithResponse())
2020
.ShouldReturn()
21-
.Ok(ок => ок
21+
.Ok(ok => ok
2222
.WithModelOfType<ICollection<ResponseModel>>()
2323
.Passing(m =>
2424
{
@@ -37,7 +37,7 @@ public void WithResponseModelShouldThrowExceptionWithIncorrectAssertions()
3737
.Instance()
3838
.Calling(c => c.OkResultWithResponse())
3939
.ShouldReturn()
40-
.Ok(ок => ок
40+
.Ok(ok => ok
4141
.WithModelOfType<ICollection<ResponseModel>>()
4242
.Passing(m =>
4343
{
@@ -54,7 +54,7 @@ public void WithResponseModelShouldNotThrowExceptionWithCorrectPredicate()
5454
.Instance()
5555
.Calling(c => c.OkResultWithResponse())
5656
.ShouldReturn()
57-
.Ok(ок => ок
57+
.Ok(ok => ok
5858
.WithModelOfType<ICollection<ResponseModel>>()
5959
.Passing(m => m.First().IntegerValue == 1));
6060
}
@@ -69,7 +69,7 @@ public void WithResponseModelShouldThrowExceptionWithWrongPredicate()
6969
.Instance()
7070
.Calling(c => c.OkResultWithResponse())
7171
.ShouldReturn()
72-
.Ok(ок => ок
72+
.Ok(ok => ok
7373
.WithModelOfType<IList<ResponseModel>>()
7474
.Passing(m => m.First().IntegerValue == 2));
7575
},

test/MyTested.AspNetCore.Mvc.Models.Test/BuildersTests/ModelsTests/ResponseModelTestBuilderTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public void WithResponseModelShouldNotThrowExceptionWithCorrectResponseModel()
1717
.Instance()
1818
.Calling(c => c.OkResultWithResponse())
1919
.ShouldReturn()
20-
.Ok(ок => ок
20+
.Ok(ok => ok
2121
.WithModelOfType<ICollection<ResponseModel>>());
2222
}
2323

@@ -28,7 +28,7 @@ public void WithResponseModelShouldNotThrowExceptionWithIncorrectInheritedTypeAr
2828
.Instance()
2929
.Calling(c => c.OkResultWithResponse())
3030
.ShouldReturn()
31-
.Ok(ок => ок
31+
.Ok(ok => ok
3232
.WithModelOfType<IList<ResponseModel>>());
3333
}
3434

@@ -39,7 +39,7 @@ public void WithResponseModelShouldNotThrowExceptionWithCorrectImplementatorType
3939
.Instance()
4040
.Calling(c => c.OkResultWithResponse())
4141
.ShouldReturn()
42-
.Ok(ок => ок
42+
.Ok(ok => ok
4343
.WithModelOfType<List<ResponseModel>>());
4444
}
4545

0 commit comments

Comments
 (0)