@@ -800,9 +800,7 @@ describe('BSON', function() {
800800 /**
801801 * @ignore
802802 */
803- it ( 'Should Correctly Serialize and Deserialize Buffer with promoteBuffers option' , function (
804- done
805- ) {
803+ it ( 'Should Correctly Serialize and Deserialize Buffer with promoteBuffers option' , function ( done ) {
806804 var doc = { doc : new Buffer ( 'hello world' ) } ;
807805 var serialized_data = createBSON ( ) . serialize ( doc ) ;
808806
@@ -1690,9 +1688,7 @@ describe('BSON', function() {
16901688 /**
16911689 * @ignore
16921690 */
1693- it ( 'Should Correctly handle Forced Doubles to ensure we allocate enough space for cap collections' , function (
1694- done
1695- ) {
1691+ it ( 'Should Correctly handle Forced Doubles to ensure we allocate enough space for cap collections' , function ( done ) {
16961692 if ( Double != null ) {
16971693 var doubleValue = new Double ( 100 ) ;
16981694 var doc = { value : doubleValue } ;
@@ -1861,9 +1857,7 @@ describe('BSON', function() {
18611857 * @_function calculateObjectSize
18621858 * @ignore
18631859 */
1864- it ( 'Should correctly calculate the size of a given javascript object using instance method' , function (
1865- done
1866- ) {
1860+ it ( 'Should correctly calculate the size of a given javascript object using instance method' , function ( done ) {
18671861 // Create a simple object
18681862 var doc = { a : 1 , func : function ( ) { } } ;
18691863 // Create a BSON parser instance
@@ -1933,9 +1927,7 @@ describe('BSON', function() {
19331927 * @_function serializeWithBufferAndIndex
19341928 * @ignore
19351929 */
1936- it ( 'Should correctly serializeWithBufferAndIndex a given javascript object using a BSON instance' , function (
1937- done
1938- ) {
1930+ it ( 'Should correctly serializeWithBufferAndIndex a given javascript object using a BSON instance' , function ( done ) {
19391931 // Create a simple object
19401932 var doc = { a : 1 , func : function ( ) { } } ;
19411933 // Create a BSON parser instance
0 commit comments