entc/gen/integration: re-enable postgres tests (#2749)

This commit is contained in:
Ariel Mashraki
2022-07-13 18:30:57 +03:00
committed by GitHub
parent 1c01301de1
commit b5b5d87f08

View File

@@ -97,7 +97,7 @@ func TestMaria(t *testing.T) {
}
func TestPostgres(t *testing.T) {
for version, port := range map[string]int{ /*"10": 5430, "11": 5431, "12": 5432, "13": 5433, */ "14": 5434} {
for version, port := range map[string]int{"10": 5430, "11": 5431, "12": 5432, "13": 5433, "14": 5434} {
addr := fmt.Sprintf("host=localhost port=%d user=postgres dbname=test password=pass sslmode=disable", port)
t.Run(version, func(t *testing.T) {
t.Parallel()