Skip to content

Commit

Permalink
Revert "Ease pagination usage"
Browse files Browse the repository at this point in the history
This reverts commit 3deb4da.
  • Loading branch information
jakublabno committed Jan 2, 2025
1 parent caae873 commit 2e74ac4
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions smsapiTests/Unit/Action/CollectionIteratorTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,6 @@ public class CollectionIteratorTest
{
private readonly ProxyStub _proxy = new();

[TestMethod]
public void empty_result()
{
var mockedResult = CollectionMother.WithItems();
_proxy.SyncExecutionResponse = new HttpResponseEntity(
mockedResult.ToHttpEntityStreamTask(),
HttpStatusCode.OK
);

var result = GetAction().ToIterator();

var i = 0;
foreach (var iterableResult in result)
Assert.AreEqual(i++, iterableResult.I);
}

[TestMethod]
public void iterate_through_single_result()
{
Expand Down

0 comments on commit 2e74ac4

Please sign in to comment.