Skip to content

Commit

Permalink
just make unit test pass
Browse files Browse the repository at this point in the history
Conflicts:

	mango_test.go
  • Loading branch information
paulbellamy committed Jun 11, 2011
1 parent 968c249 commit 67fb6bd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mango_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func init() {

func TestHelloWorld(t *testing.T) {
// Request against it
response, _, err := client.Get("http://localhost:3000/hello")
response, err := client.Get("http://localhost:3000/hello")

if err != nil {
t.Error(err)
Expand All @@ -95,7 +95,7 @@ func BenchmarkHelloWorld(b *testing.B) {

func TestLogger(t *testing.T) {
// Request against it
response, _, err := client.Get("http://localhost:3000/logger")
response, err := client.Get("http://localhost:3000/logger")

if err != nil {
t.Error(err)
Expand All @@ -119,7 +119,7 @@ func BenchmarkLogger(b *testing.B) {

func TestSessions(t *testing.T) {
// Request against it
response, _, err := client.Get("http://localhost:3000/sessions")
response, err := client.Get("http://localhost:3000/sessions")

if err != nil {
t.Error(err)
Expand Down Expand Up @@ -154,7 +154,7 @@ func BenchmarkSessions(b *testing.B) {

func TestShowErrors(t *testing.T) {
// Request against it
response, _, err := client.Get("http://localhost:3000/show_errors")
response, err := client.Get("http://localhost:3000/show_errors")

if err != nil {
t.Error(err)
Expand Down

0 comments on commit 67fb6bd

Please sign in to comment.