Skip to content

Commit e46fe53

Browse files
committed
Update test
1 parent 4fbea44 commit e46fe53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/gleam_httpc_test.gleam

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,13 +106,13 @@ pub fn follow_redirects_option_test() {
106106

107107
// disabled by default
108108
let assert Ok(resp) = httpc.send(req)
109-
assert 301 == resp.status
109+
assert 308 == resp.status
110110

111111
let assert Ok(resp) =
112112
httpc.configure()
113113
|> httpc.follow_redirects(False)
114114
|> httpc.dispatch(req)
115-
assert 301 == resp.status
115+
assert 308 == resp.status
116116

117117
let assert Ok(resp) =
118118
httpc.configure()

0 commit comments

Comments
 (0)