Skip to content

Commit

Permalink
trial fix for CI differences
Browse files Browse the repository at this point in the history
  • Loading branch information
sagerb committed Dec 17, 2024
1 parent b933e77 commit 20ecfcf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions internal/interpreters/r_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -196,10 +196,11 @@ func (s *RSuite) TestGetRVersionFromExecutable() {
s.Equal(tc.expectedVersion, version)

lockFile, _, err := rInterpreter.GetLockFilePath()
absLockFile := util.NewAbsolutePath(lockFile.String(), s.fs)
s.NoError(err)
absLockFile := util.NewAbsolutePath(lockFile.String(), s.fs)
absExpectedLockFile := util.NewAbsolutePath(tc.expectedLockfilePath, s.fs)

s.Equal(tc.expectedLockfilePath, absLockFile.String())
s.Equal(absExpectedLockFile.String(), absLockFile.String())
}
}

Expand Down

0 comments on commit 20ecfcf

Please sign in to comment.