From 6b73fd0fe7873eb88d09e7dc86ccb4b218b944b0 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 61dd11113..c565e53c3 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 =>