Run formatter

This commit is contained in:
Elara 2024-02-12 10:53:12 -08:00
parent 82001061da
commit eacbd633bd
1 changed files with 2 additions and 2 deletions

View File

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