2
0

Capitalization

This commit is contained in:
Kris Wehner
2016-12-07 21:19:58 -08:00
parent edbd30ea6a
commit 14497e4c65
2 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -158,9 +158,9 @@ func TestSimpleReplicationConnection(t *testing.T) {
}
restartLsn := getConfirmedFlushLsnFor(t, conn, "pgx_test")
integerRestartLsn, _ := pgx.ParseLsn(restartLsn)
integerRestartLsn, _ := pgx.ParseLSN(restartLsn)
if integerRestartLsn != maxWal {
t.Fatalf("Wal offset update failed, expected %s found %s", pgx.FormatLsn(maxWal), restartLsn)
t.Fatalf("Wal offset update failed, expected %s found %s", pgx.FormatLSN(maxWal), restartLsn)
}
_, err = conn.Exec("select pg_drop_replication_slot($1)", "pgx_test")