Skip to content

Commit

Permalink
Updating java GetOrCreate test variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jvenegasvega-1 committed Nov 27, 2023
1 parent 3d92d37 commit 7dc2f15
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ public void flatten() {
@Test
public void getOrCreate()
{
String expectedSession = getSession().getSessionInfo();
String actualSession = Session.builder().getOrCreate().getSessionInfo();
assert(expectedSession.equals(actualSession));
String expectedSessionInfo = getSession().getSessionInfo();
String actualSessionInfo = Session.builder().getOrCreate().getSessionInfo();
assert(actualSessionInfo.equals(expectedSessionInfo));
}

@Test
Expand Down

0 comments on commit 7dc2f15

Please sign in to comment.