From 5986bd556d1ba3a96fc78f61776077072c3963ce Mon Sep 17 00:00:00 2001 From: Jamil Najafov Date: Mon, 8 Jul 2024 14:35:52 +0300 Subject: [PATCH] PA-27048 Fix unrelated unit test --- insdash/insdash_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/insdash/insdash_test.go b/insdash/insdash_test.go index 9e62f93..1e02812 100644 --- a/insdash/insdash_test.go +++ b/insdash/insdash_test.go @@ -23,7 +23,7 @@ func Test_createBatches(t *testing.T) { }) t.Run("should_return_batches_by_record_limit", func(t *testing.T) { - batches, err := CreateBatches([]string{"test", "test"}, 10, kb64) + batches, err := CreateBatches([]string{"test", "test"}, 1, kb64) assert.Nil(t, err, "err should be nil") assert.Equal(t, 2, len(batches), "batches length should be equal to 2")