Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Danny-Dasilva committed Nov 28, 2023
1 parent 3820993 commit 635ed12
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cycletls/tests/integration/images_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@ func WriteFile(Body string, Filepath string) {
}

func CompareFiles(filepath1 string, filepath2 string) bool {
f1, err1 := io.ReadFile(filepath1)
f1, err1 := os.ReadFile(filepath1)

if err1 != nil {
log.Fatal(err1)
}

f2, err2 := io.ReadFile(filepath2)
f2, err2 := os.ReadFile(filepath2)

if err2 != nil {
log.Fatal(err2)
Expand Down
1 change: 1 addition & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Small bugfixes and ReadMe updates
### Enhancements
- Update docs
- Add tests for forceHTTP1
- update to using io instead of ioutil
### Bug Fixes
- Fix issue with keepalives on closed connections when http1 is forced

Expand Down

0 comments on commit 635ed12

Please sign in to comment.