Skip to content

Commit a56fe0f

Browse files
committed
Fix tests
1 parent 36202ba commit a56fe0f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/index.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,14 +157,14 @@ describe('server', () => {
157157

158158
it('can report the server version', done => {
159159
request.get({
160-
url: 'http://localhost:8378/1/features',
160+
url: 'http://localhost:8378/1/serverInfo',
161161
headers: {
162162
'X-Parse-Application-Id': 'test',
163163
'X-Parse-Master-Key': 'test',
164164
},
165165
json: true,
166166
}, (error, response, body) => {
167-
expect(body.serverVersion).toEqual(parseServerPackage.version);
167+
expect(body.parseServerVersion).toEqual(parseServerPackage.version);
168168
done();
169169
})
170170
});

0 commit comments

Comments
 (0)