Skip to content

Commit 30a5025

Browse files
committed
fix compilation of tests/first_run.v
1 parent d4ac0e5 commit 30a5025

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/first_run.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ fn test_index_page() {
152152
}
153153

154154
// returns headers and token
155-
fn register_user(username string, password string, email string) ?(http.Header, string) {
155+
fn register_user(username string, password string, email string) !(http.Header, string) {
156156
response := http.post(prepare_url('register'), 'username=${username}&password=${password}&email=${email}&no_redirect=1') or {
157157
return err
158158
}

0 commit comments

Comments
 (0)