Skip to content

Commit bd40c7b

Browse files
Fix linting failuires (#230)
1 parent ba0e9dc commit bd40c7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/diff/materialized_view_sql_generator_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package diff
33
import (
44
"testing"
55

6-
"github.com/stripe/pg-schema-diff/internal/schema"
76
"github.com/stretchr/testify/assert"
7+
"github.com/stripe/pg-schema-diff/internal/schema"
88
)
99

1010
func TestMaterializedViewSQLGenerator_Add_WithTablespace(t *testing.T) {
@@ -65,4 +65,4 @@ func TestMaterializedViewSQLGenerator_Add_WithoutTablespace(t *testing.T) {
6565
expectedDDL := `CREATE MATERIALIZED VIEW "public"."test_view" AS
6666
SELECT id, name FROM users`
6767
assert.Equal(t, expectedDDL, result.vertices[0].statements[0].DDL)
68-
}
68+
}

0 commit comments

Comments
 (0)