Skip to content

Commit 52df7c7

Browse files
chore(deps): update dependency scala to v3.5.2 (generated)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 37ed68c commit 52df7c7

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

docs/guides/scala/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ThisBuild / version := "0.1.0-SNAPSHOT"
2-
ThisBuild / scalaVersion := "3.5.2"
2+
ThisBuild / scalaVersion := "3.5.1"
33

44
lazy val root = (project in file("."))
55
.settings(name := "scala-snippets")

docs/snippets/scala/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ThisBuild / version := "0.1.0-SNAPSHOT"
2-
ThisBuild / scalaVersion := "3.5.2"
2+
ThisBuild / scalaVersion := "3.5.1"
33

44
lazy val root = (project in file("."))
55
.settings(name := "scala-snippets")

tests/output/scala/src/test/scala/algoliasearch/e2e/InsightsTest.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class InsightsTestE2E extends AnyFunSuite {
4949
index = "products",
5050
userToken = "user-123456",
5151
authenticatedUserToken = Some("user-123456"),
52-
timestamp = Some(1729123200000L),
52+
timestamp = Some(1729382400000L),
5353
objectIDs = Seq("9780545139700", "9780439784542"),
5454
queryID = "43b15df305339e827f0ac0bdc5ebcaa7"
5555
),
@@ -59,7 +59,7 @@ class InsightsTestE2E extends AnyFunSuite {
5959
index = "products",
6060
userToken = "user-123456",
6161
authenticatedUserToken = Some("user-123456"),
62-
timestamp = Some(1729123200000L),
62+
timestamp = Some(1729382400000L),
6363
objectIDs = Seq("9780545139700", "9780439784542")
6464
)
6565
)

tests/output/scala/src/test/scala/algoliasearch/requests/InsightsTest.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ class InsightsTest extends AnyFunSuite {
574574
index = "products",
575575
userToken = "user-123456",
576576
authenticatedUserToken = Some("user-123456"),
577-
timestamp = Some(1729123200000L),
577+
timestamp = Some(1729382400000L),
578578
objectIDs = Seq("9780545139700", "9780439784542"),
579579
queryID = "43b15df305339e827f0ac0bdc5ebcaa7"
580580
),
@@ -584,7 +584,7 @@ class InsightsTest extends AnyFunSuite {
584584
index = "products",
585585
userToken = "user-123456",
586586
authenticatedUserToken = Some("user-123456"),
587-
timestamp = Some(1729123200000L),
587+
timestamp = Some(1729382400000L),
588588
objectIDs = Seq("9780545139700", "9780439784542")
589589
)
590590
)
@@ -597,7 +597,7 @@ class InsightsTest extends AnyFunSuite {
597597
assert(res.path == "/1/events")
598598
assert(res.method == "POST")
599599
val expectedBody = parse(
600-
"""{"events":[{"eventType":"conversion","eventName":"Product Purchased","index":"products","userToken":"user-123456","authenticatedUserToken":"user-123456","timestamp":1729123200000,"objectIDs":["9780545139700","9780439784542"],"queryID":"43b15df305339e827f0ac0bdc5ebcaa7"},{"eventType":"view","eventName":"Product Detail Page Viewed","index":"products","userToken":"user-123456","authenticatedUserToken":"user-123456","timestamp":1729123200000,"objectIDs":["9780545139700","9780439784542"]}]}"""
600+
"""{"events":[{"eventType":"conversion","eventName":"Product Purchased","index":"products","userToken":"user-123456","authenticatedUserToken":"user-123456","timestamp":1729382400000,"objectIDs":["9780545139700","9780439784542"],"queryID":"43b15df305339e827f0ac0bdc5ebcaa7"},{"eventType":"view","eventName":"Product Detail Page Viewed","index":"products","userToken":"user-123456","authenticatedUserToken":"user-123456","timestamp":1729382400000,"objectIDs":["9780545139700","9780439784542"]}]}"""
601601
)
602602
val actualBody = parse(res.body.get)
603603
assert(actualBody == expectedBody)

0 commit comments

Comments
 (0)