From 6d042cf8edb101c0af022cef3eb14cef503a50b7 Mon Sep 17 00:00:00 2001 From: Yuan Teoh Date: Wed, 15 Jan 2025 09:48:47 -0800 Subject: [PATCH] fix: fix typo in postgres test --- internal/sources/postgres/postgres_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/sources/postgres/postgres_test.go b/internal/sources/postgres/postgres_test.go index c06d69681..a43208dde 100644 --- a/internal/sources/postgres/postgres_test.go +++ b/internal/sources/postgres/postgres_test.go @@ -37,7 +37,7 @@ func TestParseFromYamlPostgres(t *testing.T) { my-pg-instance: kind: postgres host: my-host - port: 0000 + port: 0.0.0.0 database: my_db `, want: server.SourceConfigs{ @@ -45,7 +45,7 @@ func TestParseFromYamlPostgres(t *testing.T) { Name: "my-pg-instance", Kind: postgres.SourceKind, Host: "my-host", - Port: "0000", + Port: "0.0.0.0", Database: "my_db", }, },