From 9ed25b4d9d8221e22beba89bb43157e6f1c0080f Mon Sep 17 00:00:00 2001 From: Derek Collison Date: Mon, 10 Feb 2025 09:28:48 -0500 Subject: [PATCH] [ci skip] Fix for typo Signed-off-by: Derek Collison --- server/jetstream_cluster_1_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/jetstream_cluster_1_test.go b/server/jetstream_cluster_1_test.go index 10b0cf85e9..7ee32ca41d 100644 --- a/server/jetstream_cluster_1_test.go +++ b/server/jetstream_cluster_1_test.go @@ -7477,7 +7477,7 @@ func TestJetStreamClusterAccountStatsForReplicatedStreams(t *testing.T) { // We need to account for possibility that the stream create was also on this server, hence the >= vs strict ==. require_True(t, accStats.Received.Msgs >= 10) - require_True(t, accStats.Received.Bytes >= 1024*1204) + require_True(t, accStats.Received.Bytes >= 1024*1024) // For sent, we will have 10 pub acks, and then should have 40 extra messages that are sent and accounted for // during the nrg propsal to the R5 peers. require_True(t, accStats.Sent.Msgs >= 50)