diff --git a/features/basic_replication.feature b/features/basic_replication.feature index 0f5799e0..be192715 100644 --- a/features/basic_replication.feature +++ b/features/basic_replication.feature @@ -1,5 +1,5 @@ Feature: basic replication - We should check that the basic bootstrapping, replication, failover and dyncamic configuration works. + We should check that the basic bootstrapping, replication and failover works. Scenario: check replication of a single table Given I start postgres0 @@ -9,9 +9,9 @@ Feature: basic replication Then table foo is present on postgres1 after 20 seconds Scenario: check the basic failover - And I kill postgres0 + When I kill postgres0 Then postgres1 role is the primary after 32 seconds When I start postgres0 Then postgres0 role is the secondary after 20 seconds When I add the table bar to postgres1 - Then table bar is present on postgres0 after 10 seconds + Then table bar is present on postgres0 after 20 seconds