Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
revert fixture change
Browse files Browse the repository at this point in the history
Adam724 committed Feb 16, 2024
1 parent acbd68a commit 6a91db2
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions test/fixtures/golang/main.go
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
package main

import (
"io"
"log"
"os"
)
import "io/ioutil"
import "log"
import "os"

func main() {
bytes, err := io.ReadAll(os.Stdin)
bytes, err := ioutil.ReadAll(os.Stdin)
if err != nil {
log.Fatal(err)
}

0 comments on commit 6a91db2

Please sign in to comment.