Skip to content

Commit

Permalink
Set noreply email for invoice tests
Browse files Browse the repository at this point in the history
  • Loading branch information
scottmckendry committed Nov 11, 2023
1 parent 170d4c0 commit 2e95b54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion data_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var testDog Dog = Dog{
OwnerName: "John Doe",
Address: "123 Fake Street",
City: "Fakeville",
Email: "[email protected]",
Email: "[email protected]",
Service: "walk",
Quantity: 1,
Price: 25,
Expand Down
2 changes: 1 addition & 1 deletion handlers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ func TestPostReq(t *testing.T) {
formData := url.Values{
"name": {"Rex"},
"ownerName": {"Jane Doe"},
"email": {"[email protected]"},
"email": {"[email protected]"},
}

req := httptest.NewRequest("POST", "/dogs", strings.NewReader(formData.Encode()))
Expand Down

0 comments on commit 2e95b54

Please sign in to comment.