Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
bassosimone committed Sep 15, 2023
1 parent e17a568 commit a1d9d2b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions script/nocopyreadall.bash
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ for file in $(find . -type f -name \*.go); do
continue
fi

if [ "$file" = "./internal/testingx/httpproxy.go" ]; then
# We're allowed to use ReadAll and Copy in this file because
# it's code that we only use for testing purposes.
continue
fi

if [ "$file" = "./internal/testingx/httptestx.go" ]; then
# We're allowed to use ReadAll and Copy in this file because
# it's code that we only use for testing purposes.
Expand Down

0 comments on commit a1d9d2b

Please sign in to comment.