@@ -294,7 +294,7 @@ func TestContentTypeSaveForCreate(t *testing.T) {
294
294
assertions .Equal (field1 ["id" ].(string ), payload ["displayField" ])
295
295
296
296
w .WriteHeader (201 )
297
- _ , _ = fmt .Fprintln (w , string ( readTestData ("content_type.json" ) ))
297
+ _ , _ = fmt .Fprintln (w , readTestData ("content_type.json" ))
298
298
})
299
299
300
300
// test server
@@ -371,7 +371,7 @@ func TestContentTypeSaveForUpdate(t *testing.T) {
371
371
assertions .Equal (field3 ["id" ].(string ), payload ["displayField" ])
372
372
373
373
w .WriteHeader (200 )
374
- _ , _ = fmt .Fprintln (w , string ( readTestData ("content_type-updated.json" ) ))
374
+ _ , _ = fmt .Fprintln (w , readTestData ("content_type-updated.json" ))
375
375
})
376
376
377
377
// test server
@@ -426,7 +426,7 @@ func TestContentTypeCreateWithoutID(t *testing.T) {
426
426
checkHeaders (r , assertions )
427
427
428
428
w .WriteHeader (200 )
429
- _ , _ = fmt .Fprintln (w , string ( readTestData ("content_type-updated.json" ) ))
429
+ _ , _ = fmt .Fprintln (w , readTestData ("content_type-updated.json" ))
430
430
})
431
431
432
432
// test server
@@ -457,7 +457,7 @@ func TestContentTypeCreateWithID(t *testing.T) {
457
457
checkHeaders (r , assertions )
458
458
459
459
w .WriteHeader (200 )
460
- _ , _ = fmt .Fprintln (w , string ( readTestData ("content_type-updated.json" ) ))
460
+ _ , _ = fmt .Fprintln (w , readTestData ("content_type-updated.json" ))
461
461
})
462
462
463
463
// test server
@@ -535,7 +535,7 @@ func TestContentTypeFieldRef(t *testing.T) {
535
535
assertions .Equal ("63Vgs0BFK0USe4i2mQUGK6" , linkValidationValue [0 ].(string ))
536
536
537
537
w .WriteHeader (201 )
538
- _ , _ = fmt .Fprintln (w , string ( readTestData ("content_type.json" ) ))
538
+ _ , _ = fmt .Fprintln (w , readTestData ("content_type.json" ))
539
539
})
540
540
541
541
// test server
@@ -599,7 +599,7 @@ func TestContentTypeFieldArray(t *testing.T) {
599
599
assertions .Equal (true , validation1 ["unique" ].(bool ))
600
600
601
601
w .WriteHeader (201 )
602
- _ , _ = fmt .Fprintln (w , string ( readTestData ("content_type.json" ) ))
602
+ _ , _ = fmt .Fprintln (w , readTestData ("content_type.json" ))
603
603
})
604
604
605
605
// test server
@@ -678,7 +678,7 @@ func TestContentTypeFieldValidationRangeUniquePredefinedValues(t *testing.T) {
678
678
assertions .Equal (float64 (22 ), predefinedValues [2 ].(float64 ))
679
679
680
680
w .WriteHeader (201 )
681
- _ , _ = fmt .Fprintln (w , string ( readTestData ("content_type.json" ) ))
681
+ _ , _ = fmt .Fprintln (w , readTestData ("content_type.json" ))
682
682
})
683
683
684
684
// test server
@@ -748,7 +748,7 @@ func TestContentTypeFieldTypeMedia(t *testing.T) {
748
748
validationMimeType := validations [0 ].(map [string ]interface {})
749
749
linkMimetypeGroup := validationMimeType ["linkMimetypeGroup" ].([]interface {})
750
750
assertions .Equal (12 , len (linkMimetypeGroup ))
751
- mimetypes := []string {}
751
+ var mimetypes []string
752
752
for _ , mimetype := range linkMimetypeGroup {
753
753
mimetypes = append (mimetypes , mimetype .(string ))
754
754
}
@@ -795,7 +795,7 @@ func TestContentTypeFieldTypeMedia(t *testing.T) {
795
795
assertions .Equal (400 , max )
796
796
797
797
w .WriteHeader (201 )
798
- _ , _ = fmt .Fprintln (w , string ( readTestData ("content_type.json" ) ))
798
+ _ , _ = fmt .Fprintln (w , readTestData ("content_type.json" ))
799
799
})
800
800
801
801
// test server
@@ -863,7 +863,7 @@ func TestContentTypeFieldValidationsUnmarshal(t *testing.T) {
863
863
864
864
handler := http .HandlerFunc (func (w http.ResponseWriter , r * http.Request ) {
865
865
w .WriteHeader (201 )
866
- _ , _ = fmt .Fprintln (w , string ( readTestData ("content_type_with_validations.json" ) ))
866
+ _ , _ = fmt .Fprintln (w , readTestData ("content_type_with_validations.json" ))
867
867
})
868
868
869
869
server := httptest .NewServer (handler )
@@ -875,16 +875,16 @@ func TestContentTypeFieldValidationsUnmarshal(t *testing.T) {
875
875
ct , err := cma .ContentTypes .Get (spaceID , "validationsTest" )
876
876
assertions .Nil (err )
877
877
878
- uniqueValidations := []FieldValidation {}
879
- linkValidations := []FieldValidation {}
880
- sizeValidations := []FieldValidation {}
881
- regexValidations := []FieldValidation {}
882
- preDefinedValidations := []FieldValidation {}
883
- rangeValidations := []FieldValidation {}
884
- dateValidations := []FieldValidation {}
885
- mimeTypeValidations := []FieldValidation {}
886
- dimensionValidations := []FieldValidation {}
887
- fileSizeValidations := []FieldValidation {}
878
+ var uniqueValidations []FieldValidation
879
+ var linkValidations []FieldValidation
880
+ var sizeValidations []FieldValidation
881
+ var regexValidations []FieldValidation
882
+ var preDefinedValidations []FieldValidation
883
+ var rangeValidations []FieldValidation
884
+ var dateValidations []FieldValidation
885
+ var mimeTypeValidations []FieldValidation
886
+ var dimensionValidations []FieldValidation
887
+ var fileSizeValidations []FieldValidation
888
888
889
889
for _ , field := range ct .Fields {
890
890
if field .Name == "text-short" {
0 commit comments