Corrected a few typos. Added invalid url for TestStartWith as it seems was intended.

This commit is contained in:
Tracy Atteberry 2014-01-18 12:29:59 -06:00
parent 64cf76194a
commit 5f1a1e5c5e
1 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ func TestRun(t *testing.T) {
input = "xxxxxxxxxxxxxxx"
err = Run(input)
if err == nil {
t.Errorf("Run(\"%s\") did not through an error as expected", input)
t.Errorf("Run(\"%s\") did not throw an error as expected", input)
}
}
@ -47,7 +47,7 @@ func TestRunWith(t *testing.T) {
app = "xxxxxxxxxxxxxxx"
err = RunWith(input, app)
if err == nil {
t.Errorf("RunWith(\"%s\", \"%s\") did not through an error as expected", input, app)
t.Errorf("RunWith(\"%s\", \"%s\") did not throw an error as expected", input, app)
}
}
@ -61,7 +61,7 @@ func TestStartWith(t *testing.T) {
}
// shouldn't error
app = "xxxxxxxxxxxxxxx"
input = "[<Invalid URL>]"
err = StartWith(input, app)
if err != nil {
t.Errorf("StartWith(\"%s\", \"%s\") shouldn't even fail on invalid input: %s", input, app, err)