@@ -36,7 +36,7 @@ func TestMakeCommentsWithTableName(t *testing.T) {
3636 Return (nil )
3737
3838 // Act
39- err := makeComments (ctx , mockSC , model )
39+ err := MakeComments (ctx , mockSC , model )
4040
4141 // Assert
4242 assert .Empty (t , err )
@@ -66,7 +66,7 @@ func TestMakeCommentsWithoutPgComment(t *testing.T) {
6666 Times (0 )
6767
6868 // Act
69- err := makeComments (ctx , mockSC , model )
69+ err := MakeComments (ctx , mockSC , model )
7070
7171 // Assert
7272 assert .Empty (t , err )
@@ -92,7 +92,7 @@ func TestMakeCommentsFieldWithPgComment(t *testing.T) {
9292 Return (nil )
9393
9494 // Act
95- err := makeComments (ctx , mockSC , model )
95+ err := MakeComments (ctx , mockSC , model )
9696
9797 // Assert
9898 assert .Empty (t , err )
@@ -139,7 +139,7 @@ func TestMakeCommentsWithTableNameAndFieldsWithPgComment(t *testing.T) {
139139 Return (nil )
140140
141141 // Act
142- err := makeComments (ctx , mockSC , model )
142+ err := MakeComments (ctx , mockSC , model )
143143
144144 // Assert
145145 assert .Empty (t , err )
@@ -173,7 +173,7 @@ func TestMakeCommentsWithMultipleModels(t *testing.T) {
173173 Return (nil )
174174
175175 // Act
176- err := makeComments (ctx , mockSC , models ... )
176+ err := MakeComments (ctx , mockSC , models ... )
177177
178178 // Assert
179179 assert .Empty (t , err )
0 commit comments