Skip to content

Commit b6c19a5

Browse files
kulshekharflovilmart
authored andcommitted
Fix endsWith query test to use the correct query (#2965)
1 parent 48865c7 commit b6c19a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/ParseQuery.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1309,7 +1309,7 @@ describe('Parse.Query testing', () => {
13091309
new TestObject({myString: someAscii + "end"}),
13101310
new TestObject({myString: someAscii})], function() {
13111311
var query = new Parse.Query(TestObject);
1312-
query.startsWith("myString", someAscii);
1312+
query.endsWith("myString", someAscii);
13131313
query.find({
13141314
success: function(results, foo) {
13151315
equal(results.length, 2);

0 commit comments

Comments
 (0)