Skip to content

Commit

Permalink
Remove useless interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
RustedBones committed Feb 24, 2023
1 parent 8900688 commit 0f64847
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,10 @@ class Neo4jIOIT extends PipelineSpec with Eventually with ForAllTestContainer {
)

val queryRoles =
s"""MATCH (p)-[r: ACTED_IN]->(m)
|WHERE m.year = $$year
|RETURN p as person, m as movie, r.role as role
|""".stripMargin
"""MATCH (p)-[r: ACTED_IN]->(m)
|WHERE m.year = $year
|RETURN p as person, m as movie, r.role as role
|""".stripMargin

val expectedRoles = Seq(
Role(martin, americanPresident, "A.J. MacInerney"),
Expand Down

0 comments on commit 0f64847

Please sign in to comment.