Run formatter

This commit is contained in:
Elara 2024-02-12 10:53:12 -08:00
parent 82001061da
commit eacbd633bd

View File

@ -93,7 +93,7 @@ func TestFuncCallVariadic(t *testing.T) {
} }
func TestFuncCallError(t *testing.T) { func TestFuncCallError(t *testing.T) {
var expectedErr = errors.New("expected error") expectedErr := errors.New("expected error")
fn := func() error { return expectedErr } fn := func() error { return expectedErr }
// test() // test()
@ -131,7 +131,7 @@ func TestFuncCallMultiReturn(t *testing.T) {
} }
func TestFuncCallMultiReturnError(t *testing.T) { func TestFuncCallMultiReturnError(t *testing.T) {
var expectedErr = errors.New("expected error") expectedErr := errors.New("expected error")
fn := func() (string, error) { return "", expectedErr } fn := func() (string, error) { return "", expectedErr }
// test() // test()