mirror of
https://github.com/retailcrm/api-client-go.git
synced 2025-04-04 05:33:32 +03:00
refactoring
This commit is contained in:
parent
c40056101d
commit
1f8626fac2
2 changed files with 7 additions and 6 deletions
|
@ -3,7 +3,5 @@ package v5
|
|||
import "encoding/json"
|
||||
|
||||
func (t Tag) MarshalJSON() ([]byte, error) {
|
||||
name, err := json.Marshal(t.Name)
|
||||
|
||||
return name, err
|
||||
return json.Marshal(t.Name)
|
||||
}
|
||||
|
|
|
@ -12,10 +12,13 @@ func TestTag_MarshalJSON(t *testing.T) {
|
|||
{"second", "#ffa654", false},
|
||||
}
|
||||
names := []byte(`["first","second"]`)
|
||||
str, _ := json.Marshal(tags)
|
||||
str, err := json.Marshal(tags)
|
||||
|
||||
eq := reflect.DeepEqual(str, names)
|
||||
if eq != true {
|
||||
if err != nil {
|
||||
t.Errorf("%v", err.Error())
|
||||
}
|
||||
|
||||
if !reflect.DeepEqual(str, names) {
|
||||
t.Errorf("Marshaled: %#v\nExpected: %#v\n", str, names)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue