Skip to content

Commit

Permalink
Fix refr_dvce_tstamp field naming (close #70)
Browse files Browse the repository at this point in the history
  • Loading branch information
rzats committed Mar 5, 2019
1 parent 64d7909 commit 943e0ca
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ case class Event(app_id: Option[String],
etl_tags: Option[String],
dvce_sent_tstamp: Option[Instant],
refr_domain_userid: Option[String],
refr_device_tstamp: Option[Instant],
refr_dvce_tstamp: Option[Instant],
derived_contexts: Contexts,
domain_sessionid: Option[String],
derived_tstamp: Option[Instant],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ class EventSpec extends Specification {
"etl_tags" -> "",
"dvce_sent_tstamp" -> "",
"refr_domain_userid" -> "",
"refr_device_tstamp" -> "",
"refr_dvce_tstamp" -> "",
"derived_contexts" -> derivedContextsJson,
"domain_sessionid" -> "2b15e5c8-d3b1-11e4-b9d6-1681e6b88ec1",
"derived_tstamp" -> "2013-11-26 00:03:57.886",
Expand Down Expand Up @@ -489,7 +489,7 @@ class EventSpec extends Specification {
etl_tags = None,
dvce_sent_tstamp = None,
refr_domain_userid = None,
refr_device_tstamp = None,
refr_dvce_tstamp = None,
derived_contexts = Contexts(
List(
SelfDescribingData(
Expand Down Expand Up @@ -690,7 +690,7 @@ class EventSpec extends Specification {
"etl_tags" : null,
"dvce_sent_tstamp" : null,
"refr_domain_userid" : null,
"refr_device_tstamp" : null,
"refr_dvce_tstamp" : null,
"contexts_com_snowplowanalytics_snowplow_ua_parser_context_1": [{
"useragentFamily": "IE",
"useragentMajor": "7",
Expand Down Expand Up @@ -843,7 +843,7 @@ class EventSpec extends Specification {
"etl_tags" -> "",
"dvce_sent_tstamp" -> "",
"refr_domain_userid" -> "",
"refr_device_tstamp" -> "",
"refr_dvce_tstamp" -> "",
"derived_contexts" -> "",
"domain_sessionid" -> "2b15e5c8-d3b1-11e4-b9d6-1681e6b88ec1",
"derived_tstamp" -> "2013-11-26 00:03:57.886",
Expand Down Expand Up @@ -977,7 +977,7 @@ class EventSpec extends Specification {
etl_tags = None,
dvce_sent_tstamp = None,
refr_domain_userid = None,
refr_device_tstamp = None,
refr_dvce_tstamp = None,
derived_contexts = Contexts(List()),
domain_sessionid = Some("2b15e5c8-d3b1-11e4-b9d6-1681e6b88ec1"),
derived_tstamp = Some(Instant.parse("2013-11-26T00:03:57.886Z")),
Expand Down Expand Up @@ -1118,7 +1118,7 @@ class EventSpec extends Specification {
"etl_tags" : null,
"dvce_sent_tstamp" : null,
"refr_domain_userid" : null,
"refr_device_tstamp" : null,
"refr_dvce_tstamp" : null,
"domain_sessionid": "2b15e5c8-d3b1-11e4-b9d6-1681e6b88ec1",
"derived_tstamp": "2013-11-26T00:03:57.886Z",
"event_vendor": "com.snowplowanalytics.snowplow",
Expand Down Expand Up @@ -1257,7 +1257,7 @@ class EventSpec extends Specification {
"etl_tags" -> "",
"dvce_sent_tstamp" -> "",
"refr_domain_userid" -> "",
"refr_device_tstamp" -> "",
"refr_dvce_tstamp" -> "",
"derived_contexts" -> derivedContextsJson,
"domain_sessionid" -> "2b15e5c8-d3b1-11e4-b9d6-1681e6b88ec1",
"derived_tstamp" -> "2013-11-26 00:03:57.886",
Expand Down Expand Up @@ -1448,7 +1448,7 @@ class EventSpec extends Specification {
etl_tags = None,
dvce_sent_tstamp = None,
refr_domain_userid = None,
refr_device_tstamp = None,
refr_dvce_tstamp = None,
derived_contexts = Contexts(
List(
SelfDescribingData(
Expand Down Expand Up @@ -1635,7 +1635,7 @@ class EventSpec extends Specification {
"etl_tags" : null,
"dvce_sent_tstamp" : null,
"refr_domain_userid" : null,
"refr_device_tstamp" : null,
"refr_dvce_tstamp" : null,
"contexts_com_snowplowanalytics_snowplow_ua_parser_context_1": [{
"useragentFamily": "IE",
"useragentMajor": "7",
Expand Down Expand Up @@ -1787,7 +1787,7 @@ class EventSpec extends Specification {
"etl_tags" -> "",
"dvce_sent_tstamp" -> "",
"refr_domain_userid" -> "",
"refr_device_tstamp" -> "",
"refr_dvce_tstamp" -> "",
"derived_contexts" -> derivedContextsJson,
"domain_sessionid" -> "2b15e5c8-d3b1-11e4-b9d6-1681e6b88ec1",
"derived_tstamp" -> "2013-11-26 00:03:57.886",
Expand Down Expand Up @@ -1978,7 +1978,7 @@ class EventSpec extends Specification {
"etl_tags" -> "",
"dvce_sent_tstamp" -> "",
"refr_domain_userid" -> "",
"refr_device_tstamp" -> "",
"refr_dvce_tstamp" -> "",
"derived_contexts" -> derivedContextsJson,
"domain_sessionid" -> "2b15e5c8-d3b1-11e4-b9d6-1681e6b88ec1",
"derived_tstamp" -> "2013-11-26 00:03:57.886",
Expand Down

0 comments on commit 943e0ca

Please sign in to comment.