diff --git a/modules/core/src/test/scala/com.snowplowanalytics.snowplow.bigquery/processing/LegacyColumnsResolveSpec.scala b/modules/core/src/test/scala/com.snowplowanalytics.snowplow.bigquery/processing/LegacyColumnsResolveSpec.scala index 689a1c7d..825343dd 100644 --- a/modules/core/src/test/scala/com.snowplowanalytics.snowplow.bigquery/processing/LegacyColumnsResolveSpec.scala +++ b/modules/core/src/test/scala/com.snowplowanalytics.snowplow.bigquery/processing/LegacyColumnsResolveSpec.scala @@ -111,8 +111,8 @@ class LegacyColumnsResolveSpec extends Specification with CatsEffect { val expectedStruct = Type.Struct( NonEmptyVector.of( Field("col_camel", Type.Json, Required, Set("colCamel")), - Field("col_snake", Type.Json, Required, Set("col_snake")), - Field("col_other", Type.Long, Nullable, Set("col_other")) + Field("col_other", Type.Long, Nullable, Set("col_other")), + Field("col_snake", Type.Json, Required, Set("col_snake")) ) ) @@ -283,8 +283,8 @@ class LegacyColumnsResolveSpec extends Specification with CatsEffect { val expectedStruct = Type.Struct( NonEmptyVector.of( Field("col_camel", Type.Json, Required, Set("colCamel")), - Field("col_snake", Type.Json, Required, Set("col_snake")), - Field("col_other", Type.Long, Nullable, Set("col_other")) + Field("col_other", Type.Long, Nullable, Set("col_other")), + Field("col_snake", Type.Json, Required, Set("col_snake")) ) ) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index c4016142..581251ee 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -29,8 +29,8 @@ object Dependencies { val bigquery = "2.34.2" // Snowplow - val streams = "0.8.0-M6" - val igluClient = "3.1.0" + val streams = "0.8.2-M1" + val igluClient = "4.0.0" // tests val specs2 = "4.20.0"