diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-01-09 11:01:45 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-01-09 11:08:18 -0500 |
commit | c9855f23c161d305433ff86c5fb68988777df5a8 (patch) | |
tree | 56fdae608c5e98fc8de1e0bfb3e86df1ff62901b /src/test/test_rendcache.c | |
parent | e2fcfc6e52e5e95a43df12259055fa38e9a9c06d (diff) | |
download | tor-c9855f23c161d305433ff86c5fb68988777df5a8.tar.gz tor-c9855f23c161d305433ff86c5fb68988777df5a8.zip |
Replace various NS_MODULE/SUBMODULE vals with shorter names.
This will help avoid wide lines in our output.
Diffstat (limited to 'src/test/test_rendcache.c')
-rw-r--r-- | src/test/test_rendcache.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/test_rendcache.c b/src/test/test_rendcache.c index 9947934349..5771ca1d22 100644 --- a/src/test/test_rendcache.c +++ b/src/test/test_rendcache.c @@ -21,7 +21,7 @@ #include "test/rend_test_helpers.h" #include "test/log_test_helpers.h" -#define NS_MODULE rend_cache +#define NS_MODULE rcache static const int RECENT_TIME = -10; static const int TIME_IN_THE_PAST = -(REND_CACHE_MAX_AGE + \ @@ -1250,4 +1250,3 @@ struct testcase_t rend_cache_tests[] = { test_rend_cache_validate_intro_point_failure, 0, NULL, NULL }, END_OF_TESTCASES }; - |