Skip to content

Commit

Permalink
fix(testschema): make tests work
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Kropachev committed Jun 7, 2023
1 parent 7f123a8 commit 53f384b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/testschema/columns_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ func TestMarshalUnmarshal(t *testing.T) {
}

opts := cmp.Options{
cmp.AllowUnexported(testschema.Table{}),
cmpopts.IgnoreUnexported(testschema.Table{}),
cmp.AllowUnexported(testschema.Table{}, testschema.MaterializedView{}),
cmpopts.IgnoreUnexported(testschema.Table{}, testschema.MaterializedView{}),
}

b, err := json.MarshalIndent(s1, " ", " ")
Expand Down

0 comments on commit 53f384b

Please sign in to comment.