From ed643431a5c230a8c5d9dd8b0fe45b9a97641a02 Mon Sep 17 00:00:00 2001 From: Anton Parkhomenko Date: Thu, 27 Aug 2020 18:38:00 +0300 Subject: [PATCH] Beam: fix unit tests failing after update of MaxMind database (close #327) --- .../enrichments/IpLookupsEnrichmentSpec.scala | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/beam/src/test/scala/com.snowplowanalytics.snowplow.enrich.beam/enrichments/IpLookupsEnrichmentSpec.scala b/modules/beam/src/test/scala/com.snowplowanalytics.snowplow.enrich.beam/enrichments/IpLookupsEnrichmentSpec.scala index f0144a69a..8813c4969 100644 --- a/modules/beam/src/test/scala/com.snowplowanalytics.snowplow.enrich.beam/enrichments/IpLookupsEnrichmentSpec.scala +++ b/modules/beam/src/test/scala/com.snowplowanalytics.snowplow.enrich.beam/enrichments/IpLookupsEnrichmentSpec.scala @@ -73,6 +73,7 @@ class IpLookupsEnrichmentSpec extends PipelineSpec { .output(PubsubIO.readString("out")) { o => o should satisfySingleValue { c: String => expected.forall(c.contains) // Add `println(c);` before `expected` to see the enrichment output + // see https://github.com/snowplow/enrich/issues/327 }; () } .output(PubsubIO.readString("bad")) { b =>