소스 검색

Repair unit test that assumed we have 9 dirauths.

Nick Mathewson 8 년 전
부모
커밋
e99cc8740f
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      src/test/test_config.c

+ 3 - 3
src/test/test_config.c

@@ -1630,10 +1630,10 @@ test_config_adding_default_trusted_dir_servers(void *arg)
   tt_assert(get_n_authorities(BRIDGE_DIRINFO) == 1);
   tt_assert(smartlist_len(router_get_fallback_dir_servers()) == 1);
 
-  /* Assume we have nine V3 authorities */
+  /* Assume we have eight V3 authorities */
   add_default_trusted_dir_authorities(V3_DIRINFO);
-  tt_assert(get_n_authorities(V3_DIRINFO) == 9);
-  tt_assert(smartlist_len(router_get_fallback_dir_servers()) == 10);
+  tt_int_op(get_n_authorities(V3_DIRINFO), OP_EQ, 8);
+  tt_int_op(smartlist_len(router_get_fallback_dir_servers()), OP_EQ, 9);
 
  done:
   clear_dir_servers();