aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test-pulse-manager.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/test-pulse-manager.c b/tests/test-pulse-manager.c
index 67fd67d..313f325 100644
--- a/tests/test-pulse-manager.c
+++ b/tests/test-pulse-manager.c
@@ -37,7 +37,6 @@ mock_sink_info()
mock_sink = g_new0(pa_sink_info, 1);
mock_sink->index = 8;
mock_sink->name = g_strdup("mock_sink");
- mock_sink->description = g_strdup("mock description");
mock_sink->mute = 0;
pa_cvolume volume; // nearly full volume:
pa_cvolume_set(&volume, 1, 30000);
@@ -116,7 +115,6 @@ static void test_sink_cache_population()
sink_info* stored_sink_info = g_hash_table_lookup(sink_hash, GINT_TO_POINTER(mock_sink->index));
g_assert(g_ascii_strncasecmp(mock_sink->name, stored_sink_info->name, strlen(mock_sink->name)) == 0);
- g_assert(g_ascii_strncasecmp(mock_sink->description, stored_sink_info->description, strlen(mock_sink->description)) == 0);
g_assert(!!mock_sink->mute == stored_sink_info->mute);
g_assert(mock_sink->index == stored_sink_info->index);
g_assert(pa_cvolume_equal(&mock_sink->volume, &stored_sink_info->volume));