Ariya Hidayat 2014-01-24 20:22:38 -08:00
parent 9e9bcd7763
commit d247926d9c
2 changed files with 4 additions and 4 deletions

View File

@ -34,8 +34,8 @@
#define PHANTOMJS_VERSION_MAJOR 1
#define PHANTOMJS_VERSION_MINOR 9
#define PHANTOMJS_VERSION_PATCH 6
#define PHANTOMJS_VERSION_STRING "1.9.6"
#define PHANTOMJS_VERSION_PATCH 7
#define PHANTOMJS_VERSION_STRING "1.9.7"
#define COFFEE_SCRIPT_EXTENSION ".coffee"

View File

@ -55,8 +55,8 @@ describe("phantom global object", function() {
expect(phantom.version.minor).toEqual(9);
});
it("should return 6 as the patch version", function() {
expect(phantom.version.patch).toEqual(6);
it("should return 7 as the patch version", function() {
expect(phantom.version.patch).toEqual(7);
});
it("should have 'injectJs' function", function() {