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 9be66c0 commit b933e77
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion internal/interpreters/r_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,10 @@ func (s *RSuite) TestGetRVersionFromExecutable() {
s.Equal(tc.expectedVersion, version)

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

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

Expand Down

0 comments on commit b933e77

Please sign in to comment.