Skip to content

Commit

Permalink
tidy up project references (quii#688)
Browse files Browse the repository at this point in the history
I've removed Dave and Chris' usernames from the project references so that any mention of the project path is a bit cleaner, eg. in quoted failure messages it will read learn-go-with-tests/math/clockface
  • Loading branch information
ruthmoog authored Jul 14, 2023
1 parent ec246be commit 9cc6360
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions math.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ and now we get:
clockface_test.go:17: Got {0 0}, wanted {150 60}
FAIL
exit status 1
FAIL github.com/gypsydave5/learn-go-with-tests/math/v1/clockface 0.006s
FAIL learn-go-with-tests/math/clockface 0.006s
```

### Write enough code to make it pass
Expand Down Expand Up @@ -857,7 +857,7 @@ import (
"os"
"time"

"github.com/quii/learn-go-with-tests/math/clockface" // REPLACE THIS!
"learn-go-with-tests/math/clockface" // REPLACE THIS!
)

func main() {
Expand Down Expand Up @@ -1133,7 +1133,7 @@ import (
"os"
"time"

"github.com/gypsydave5/learn-go-with-tests/math/v7b/clockface"
"learn-go-with-tests/math/clockface"
)

func main() {
Expand Down Expand Up @@ -1829,7 +1829,7 @@ get the remainder of the current hour divided by 12.

```
PASS
ok github.com/gypsydave5/learn-go-with-tests/math/v10/clockface 0.008s
ok learn-go-with-tests/math/clockface 0.008s
```
### Write the test first

Expand Down Expand Up @@ -2006,7 +2006,7 @@ The tests will soon tell me if I'm wrong.

```
PASS
ok github.com/gypsydave5/learn-go-with-tests/math/v11/clockface 0.009s
ok learn-go-with-tests/math/clockface 0.009s
```
<!--
Here endeth v11
Expand Down

0 comments on commit 9cc6360

Please sign in to comment.