diff --git a/README.md b/README.md index af3e67d..632c30e 100755 --- a/README.md +++ b/README.md @@ -7,4 +7,3 @@ Uses Grunt to run tests against an Express server, then generates reports with X #A PR build #build 2 -#build 3 diff --git a/index.js b/index.js index 2a40f00..ed08321 100755 --- a/index.js +++ b/index.js @@ -13,7 +13,7 @@ db.run("CREATE TABLE Foo(name TEXT)", function(err, row) { /* Routes */ app.get("/", function (req, res) { - res.send("Heyyy buddy!"); + res.send("Hey buddy!"); }); app.get("/:name", function (req, res) { diff --git a/sssshippable.yml b/shippable.yml similarity index 100% rename from sssshippable.yml rename to shippable.yml diff --git a/test.js b/test.js index 4250201..6c69b23 100755 --- a/test.js +++ b/test.js @@ -8,7 +8,7 @@ describe("Index", function () { superagent.get("http://localhost:3000/") .end(function (e, res) { (e === null).should.equal(true); - res.text.should.equal("Heyyy buddy!"); + res.text.should.equal("Hey buddy!"); done(); }); });