Skip to content

Commit

Permalink
TEST
Browse files Browse the repository at this point in the history
  • Loading branch information
albertodonato committed Jan 11, 2024
1 parent dedd9c6 commit f40eabc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions testhelpers/tempdir.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package testhelpers

import (
"fmt"
"os"
"path/filepath"

Expand Down Expand Up @@ -56,6 +57,7 @@ func (s *TempDirTestSuite) Mkdir(name string) string {
// the new name. Both paths are relative to the tempdir path.
func (s *TempDirTestSuite) Symlink(oldname, newname string) string {
newPath := s.absPath(newname)
fmt.Println(">>", oldname, newname, newPath)
err := os.Symlink(oldname, newPath)
s.Nil(err)
return newPath
Expand Down

0 comments on commit f40eabc

Please sign in to comment.