test_http_media_cache.c: Fix copy/paste error during test deregistration.

Change-Id: I9a3a978b2f818be464e062d97b93831b127ef28c
This commit is contained in:
Sean Bright 2021-09-10 10:56:41 -04:00 committed by Joshua Colp
parent a1fa8df0ae
commit 46afd61b75
1 changed files with 2 additions and 2 deletions

View File

@ -764,8 +764,8 @@ static int unload_module(void)
AST_TEST_UNREGISTER(retrieve_etag_expired);
AST_TEST_UNREGISTER(retrieve_cache_control_age);
AST_TEST_UNREGISTER(retrieve_cache_control_directives);
AST_TEST_REGISTER(retrieve_parsed_uri);
AST_TEST_REGISTER(retrieve_content_type);
AST_TEST_UNREGISTER(retrieve_parsed_uri);
AST_TEST_UNREGISTER(retrieve_content_type);
return 0;
}