Skip to content

Commit

Permalink
Solving scala failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jvenegasvega-1 committed Nov 27, 2023
1 parent 458ac23 commit 4f7beb8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/test/scala/com/snowflake/snowpark_test/SessionSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,9 @@ class SessionSuite extends SNTestBase {
}

test("Test for get or create session") {
val actualSession = Session.builder.getOrCreate
assert(actualSession == session)
val session1 = Session.builder.getOrCreate
val session2 = Session.builder.getOrCreate
assert(session1 == session2)
}

test("Test for invalid configs") {
Expand Down

0 comments on commit 4f7beb8

Please sign in to comment.