Skip to content

Commit 26e6139

Browse files
authored
Fix channel type in ingestion_status_e2e_test.go to use read-only channels (#307)
1 parent b86e3d3 commit 26e6139

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

azkustoingest/test/etoe/ingestion_status_e2e_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ func TestIngestionStatus(t *testing.T) {
7171
defer cancel()
7272

7373
count := 5
74-
var ch [5]chan error
74+
var ch [5]<-chan error
7575
var errors [5]error
7676

7777
for i := 0; i < count; i++ {
@@ -96,7 +96,7 @@ func TestIngestionStatus(t *testing.T) {
9696
defer cancel()
9797

9898
count := 5
99-
var ch [5]chan error
99+
var ch [5]<-chan error
100100
var errors [5]error
101101

102102
for i := 0; i < count; i++ {

0 commit comments

Comments
 (0)