Skip to content

Commit

Permalink
Fix test prefix to start with TestJetStreamCluster (#5952)
Browse files Browse the repository at this point in the history
Noticed two tests in `jetstream_cluster_N_test.go` that weren't prefixed
with `TestJetStreamCluster`.

Signed-off-by: Maurice van Veen <github@mauricevanveen.com>
  • Loading branch information
derekcollison authored Oct 3, 2024
2 parents 9ae65f9 + d401bec commit 426d4b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/jetstream_cluster_4_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3904,7 +3904,7 @@ func TestJetStreamClusterAPILimitAdvisory(t *testing.T) {
require_Equal(t, advisory.Dropped, queueLimit) // Configured queue limit.
}

func TestJetStreamPendingRequestsInJsz(t *testing.T) {
func TestJetStreamClusterPendingRequestsInJsz(t *testing.T) {
c := createJetStreamClusterExplicit(t, "R3S", 3)
defer c.shutdown()

Expand Down Expand Up @@ -3962,7 +3962,7 @@ func TestJetStreamPendingRequestsInJsz(t *testing.T) {
require_NotEqual(t, m.Stats.JetStream.Meta.Pending, 0)
}

func TestJetStreamConsumerReplicasAfterScale(t *testing.T) {
func TestJetStreamClusterConsumerReplicasAfterScale(t *testing.T) {
c := createJetStreamClusterExplicit(t, "R5S", 5)
defer c.shutdown()

Expand Down

0 comments on commit 426d4b9

Please sign in to comment.