summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/sync8.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/noPassthrough/sync8.js')
-rw-r--r--jstests/noPassthrough/sync8.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/jstests/noPassthrough/sync8.js b/jstests/noPassthrough/sync8.js
deleted file mode 100644
index 241ad655569..00000000000
--- a/jstests/noPassthrough/sync8.js
+++ /dev/null
@@ -1,13 +0,0 @@
-// Test for SERVER-11492 - make sure that upserting a new document reports n:1 in GLE
-
-var test = new SyncCCTest( "sync1" );
-
-var db = test.conn.getDB( "test" );
-var t = db.sync8;
-t.remove({});
-
-t.update({_id:1}, {$set:{a:1}}, true);
-var le = db.getLastErrorObj();
-assert.eq(1, le.n);
-
-test.stop();