Skip to content

Commit 94fb5bb

Browse files
author
dalyd
committed
Replace let with var in pipeline.js to remove ECMAScript 6 feature
1 parent 65a9942 commit 94fb5bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testcases/pipelines.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ function generateTestCase(options) {
149149
options.indices || [],
150150
options.docGenerator || defaultDocGenerator),
151151
post: options.post || function(view) {
152-
let collection = view.getDB()[view.getName() + "_backing"];
152+
var collection = view.getDB()[view.getName() + "_backing"];
153153
view.drop();
154154
collection.drop();
155155
},

0 commit comments

Comments
 (0)