diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-05-08 13:08:13 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-05-08 13:08:13 -0400 |
commit | 5bb617236704be189e68c713d95dac002912a219 (patch) | |
tree | 6c5d43112ff79f140036182fede4ee3070ab13b3 /src/test/test_circuitlist.c | |
parent | 1f11be21700af2c9050ea79f2c8942786eda79ba (diff) | |
download | tor-5bb617236704be189e68c713d95dac002912a219.tar.gz tor-5bb617236704be189e68c713d95dac002912a219.zip |
Fix numerous type errors in the unit tests
Remove tinytest casts that were suppressing them.
Fix for #11825.
Diffstat (limited to 'src/test/test_circuitlist.c')
-rw-r--r-- | src/test/test_circuitlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_circuitlist.c b/src/test/test_circuitlist.c index 7b7d4153e0..b19edd1fd4 100644 --- a/src/test/test_circuitlist.c +++ b/src/test/test_circuitlist.c @@ -53,7 +53,7 @@ circuitmux_detach_mock(circuitmux_t *cmux, circuit_t *circ) tt_int_op(cam.ncalls, ==, 1); \ tt_ptr_op(cam.cmux, ==, (mux_)); \ tt_ptr_op(cam.circ, ==, (circ_)); \ - tt_ptr_op(cam.dir, ==, (dir_)); \ + tt_int_op(cam.dir, ==, (dir_)); \ memset(&cam, 0, sizeof(cam)); \ } while (0) |