sum: use slices.Equal
This commit is contained in:
		@ -1,7 +1,7 @@
 | 
				
			|||||||
package sum
 | 
					package sum
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import (
 | 
					import (
 | 
				
			||||||
	"reflect"
 | 
						"slices"
 | 
				
			||||||
	"testing"
 | 
						"testing"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -22,8 +22,7 @@ func TestSumAll(t *testing.T) {
 | 
				
			|||||||
	got := SumAll([]int{1, 2}, []int{0, 9})
 | 
						got := SumAll([]int{1, 2}, []int{0, 9})
 | 
				
			||||||
	exp := []int{3, 9}
 | 
						exp := []int{3, 9}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// NOTE: check if any two variables are the same
 | 
						if !slices.Equal(got, exp) {
 | 
				
			||||||
	if !reflect.DeepEqual(got, exp) {
 | 
					 | 
				
			||||||
		t.Errorf("got %d, expected %d", got, exp)
 | 
							t.Errorf("got %d, expected %d", got, exp)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user