diff options
author | Amit Kapila | 2025-03-25 04:09:53 +0000 |
---|---|---|
committer | Amit Kapila | 2025-03-25 04:09:53 +0000 |
commit | cc4331605ad81ad3040704470ff56904624eef75 (patch) | |
tree | a07d4deba5fc51adc4c9c95a0373428794b125b0 | |
parent | b87ced747df74fd094aba3902bca3d3c6b5b247d (diff) |
Fix the typo in the test case added in 73eba5004a.
Author: vignesh C <[email protected]>
Discussion: https://postgr.es/m/CALDaNm2ms1deM5EYNLFEfESv_Kw=Y4AiTB0LP=qGS-UpFwGbPg@mail.gmail.com
Discussion: https://postgr.es/m/CABdArM7FW-_dnthGkg2s0fy1HhUB8C3ELA0gZX1kkbs1ZZoV3Q@mail.gmail.com
-rw-r--r-- | src/test/subscription/t/035_conflicts.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/subscription/t/035_conflicts.pl b/src/test/subscription/t/035_conflicts.pl index f9778db7cc9..3a4d44e1d0e 100644 --- a/src/test/subscription/t/035_conflicts.pl +++ b/src/test/subscription/t/035_conflicts.pl @@ -76,7 +76,7 @@ $node_subscriber->wait_for_log( .*Key \(c\)=\(4\); existing local tuple \(4, 4, 4\); remote tuple \(2, 3, 4\)./, $log_offset); -pass('multiple_unique_conflicts detected during update'); +pass('multiple_unique_conflicts detected during insert'); # Truncate table to get rid of the error $node_subscriber->safe_psql('postgres', "TRUNCATE conf_tab;"); @@ -108,6 +108,6 @@ $node_subscriber->wait_for_log( .*Key \(c\)=\(8\); existing local tuple \(8, 8, 8\); remote tuple \(6, 7, 8\)./, $log_offset); -pass('multiple_unique_conflicts detected during insert'); +pass('multiple_unique_conflicts detected during update'); done_testing(); |