mu: remove obsolete MU_FEATURE_CRYPTO

This commit is contained in:
Dirk-Jan C. Binnema
2020-11-15 17:03:24 +02:00
parent 3f4e0cff62
commit c8b507f826
3 changed files with 1 additions and 7 deletions

View File

@ -186,7 +186,6 @@ test_mu_util_supports (void)
#endif /*BUILD_GUILE*/
g_assert_cmpuint (mu_util_supports (MU_FEATURE_GUILE), == ,has_guile);
g_assert_cmpuint (mu_util_supports (MU_FEATURE_CRYPTO), == ,TRUE);
path = g_find_program_in_path ("gnuplot");
g_free (path);
@ -195,8 +194,7 @@ test_mu_util_supports (void)
path ? TRUE : FALSE);
g_assert_cmpuint (
mu_util_supports (MU_FEATURE_GNUPLOT|MU_FEATURE_GUILE|
MU_FEATURE_CRYPTO),
mu_util_supports (MU_FEATURE_GNUPLOT|MU_FEATURE_GUILE),
==,
has_guile && path ? TRUE : FALSE);
}