diff options
-rw-r--r-- | libgweather/tests/metar.c | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/libgweather/tests/metar.c b/libgweather/tests/metar.c index 7d6c7c0..a6fa7e7 100644 --- a/libgweather/tests/metar.c +++ b/libgweather/tests/metar.c @@ -41,20 +41,11 @@ parse_metar_stations (const char *contents) continue; } + /* If it is a duplicate discard it */ if (g_hash_table_lookup (stations_ht, station)) { - const char * const known_duplicates[] = { - "VOGO", - "KHQG", - "KOEL", - "KTQK", - "KX26", - NULL - }; - if (g_strv_contains (known_duplicates, station)) { - g_free (station); - continue; - } g_test_message ("Weather station '%s' already defined\n", station); + g_free (station); + continue; } g_hash_table_insert (stations_ht, station, g_strdup (line)); |