Skip to content

Commit fff22f0

Browse files
committed
fix flaky test
1 parent b55e8e6 commit fff22f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/Schema.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -932,7 +932,7 @@ describe('Class Level Permissions for requiredAuth', () => {
932932
return query.get(stuff.id);
933933
});
934934
}).then((gotStuff) => {
935-
gotStuff.save({'foo': 'baz'}).then(() => {
935+
return gotStuff.save({'foo': 'baz'}).then(() => {
936936
return gotStuff.destroy();
937937
})
938938
}).then(() => {

0 commit comments

Comments
 (0)