Merge pull request #1 from grymoire7/master

Corrected a few typos.  Added invalid url for TestStartWith as it seems ...
This commit is contained in:
skratchdot 2014-01-18 11:04:08 -08:00
commit a3c5276dd4
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)