Skip to content

Commit c74c9b1

Browse files
authored
Fix: Tests work on the TheAlgorithms/Go repository (#273)
* fix: the algorithm handle for go get command * fix: changed the required import from my repo (tjgurwara99/Go) to the algorithms repo (TheAlgorithms/Go) * fix: typo
1 parent 4af3545 commit c74c9b1

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

ciphers/rot13/rot13.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
package rot13
44

55
import (
6-
"github.com/tjgurwara99/Go/ciphers/caesar"
6+
"github.com/TheAlgorithms/Go/ciphers/caesar"
77
)
88

99
// rot13 is a special case, which is fixed the shift of 13, of the Caesar cipher

go.mod

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
module github.com/tjgurwara99/Go
1+
module github.com/TheAlgorithms/Go
22

3-
go 1.14
4-
5-
require github.com/douglasmakey/golang-algorithms- v0.0.0-20180429234644-0a5ef73a9fd5
3+
go 1.15

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +0,0 @@
1-
github.com/douglasmakey/golang-algorithms- v0.0.0-20180429234644-0a5ef73a9fd5 h1:ae3ZNa8+Q3WVR6I/BdB+AatZrnZZpnyl6ZOWDmh96Jw=
2-
github.com/douglasmakey/golang-algorithms- v0.0.0-20180429234644-0a5ef73a9fd5/go.mod h1:DUocdLj6AeO5RUfLT9JPVhanSEihgqlwSlIfcEloUqY=

0 commit comments

Comments
 (0)