@@ -800,9 +800,7 @@ describe('BSON', function() {
800
800
/**
801
801
* @ignore
802
802
*/
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 ) {
806
804
var doc = { doc : new Buffer ( 'hello world' ) } ;
807
805
var serialized_data = createBSON ( ) . serialize ( doc ) ;
808
806
@@ -1690,9 +1688,7 @@ describe('BSON', function() {
1690
1688
/**
1691
1689
* @ignore
1692
1690
*/
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 ) {
1696
1692
if ( Double != null ) {
1697
1693
var doubleValue = new Double ( 100 ) ;
1698
1694
var doc = { value : doubleValue } ;
@@ -1861,9 +1857,7 @@ describe('BSON', function() {
1861
1857
* @_function calculateObjectSize
1862
1858
* @ignore
1863
1859
*/
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 ) {
1867
1861
// Create a simple object
1868
1862
var doc = { a : 1 , func : function ( ) { } } ;
1869
1863
// Create a BSON parser instance
@@ -1933,9 +1927,7 @@ describe('BSON', function() {
1933
1927
* @_function serializeWithBufferAndIndex
1934
1928
* @ignore
1935
1929
*/
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 ) {
1939
1931
// Create a simple object
1940
1932
var doc = { a : 1 , func : function ( ) { } } ;
1941
1933
// Create a BSON parser instance
0 commit comments