fix: fix typo in postgres test (#216)

This commit is contained in:
Yuan
2025-01-15 09:53:04 -08:00
committed by GitHub
parent 58aee52f40
commit 0c3d12ae04

View File

@@ -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",
},
},