File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -197,15 +197,15 @@ mod tests {
197
197
assert_eq ! ( test. server. listen, "127.0.0.1:123" . parse( ) . unwrap( ) ) ;
198
198
assert_eq ! ( test. server. denylist. action, FilterAction :: Deny ) ;
199
199
200
- let test = dbg ! ( toml:: from_str:: <TestConfig >(
200
+ let test = toml:: from_str :: < TestConfig > (
201
201
r#"
202
202
[server]
203
203
listen = "127.0.0.1:123"
204
204
205
205
[server.allowlist]
206
206
filter = ["192.168.33.34/24"]
207
207
"# ,
208
- ) ) ;
208
+ ) ;
209
209
assert ! ( test. is_err( ) ) ;
210
210
211
211
let test = toml:: from_str :: < TestConfig > (
Original file line number Diff line number Diff line change @@ -1000,7 +1000,6 @@ mod tests {
1000
1000
} ) ;
1001
1001
1002
1002
let result = run_server ( listener) . await ;
1003
- dbg ! ( & result) ;
1004
1003
assert ! ( matches!( result, Err ( KeyExchangeError :: IncompleteResponse ) ) ) ;
1005
1004
}
1006
1005
You can’t perform that action at this time.
0 commit comments