You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by bo...@apache.org on 2021/12/21 02:07:59 UTC

[pulsar] branch branch-2.9 updated: fix testCreateTransactionSystemTopic

This is an automated email from the ASF dual-hosted git repository.

bogong pushed a commit to branch branch-2.9
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/branch-2.9 by this push:
     new 0ee4398d fix testCreateTransactionSystemTopic
     new 70d40be  Merge branch 'branch-2.9' of https://github.com/apache/pulsar into branch-2.9
0ee4398d is described below

commit 0ee4398d0522a94baefb82e13c282d370bcf9af4
Author: congbo <co...@github.com>
AuthorDate: Tue Dec 21 10:04:31 2021 +0800

    fix testCreateTransactionSystemTopic
---
 .../test/java/org/apache/pulsar/broker/transaction/TransactionTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pulsar-broker/src/test/java/org/apache/pulsar/broker/transaction/TransactionTest.java b/pulsar-broker/src/test/java/org/apache/pulsar/broker/transaction/TransactionTest.java
index 12a6b28..ed0bea1 100644
--- a/pulsar-broker/src/test/java/org/apache/pulsar/broker/transaction/TransactionTest.java
+++ b/pulsar-broker/src/test/java/org/apache/pulsar/broker/transaction/TransactionTest.java
@@ -138,7 +138,7 @@ public class TransactionTest extends TransactionTestBase {
 
         // getList does not include transaction system topic
         List<String> list = admin.topics().getList(NAMESPACE1);
-        assertEquals(list.size(), 4);
+        assertEquals(list.size(), 3);
         list.forEach(topic -> assertFalse(topic.contains(PENDING_ACK_STORE_SUFFIX)));
 
         try {