@@ -1842,15 +1842,15 @@ describe('BSON', function () {
1842
1842
* @ignore
1843
1843
*/
1844
1844
context ( 'Code' , function ( ) {
1845
- it ( 'when non-nested fields' , function ( ) {
1845
+ it ( 'when it contains non-nested fields' , function ( ) {
1846
1846
const code = new Code ( 'this.a > i' , { i : 1 } ) ;
1847
1847
expect ( inspect ( code ) ) . to . equal ( `new Code('this.a > i', { i: 1 })` ) ;
1848
1848
} ) ;
1849
- it ( 'when non- nested fields' , function ( ) {
1849
+ it ( 'when it contains nested fields' , function ( ) {
1850
1850
const code = new Code ( 'this.a > i' , { a : 1 , b : { nest : 'mine' } } ) ;
1851
1851
expect ( inspect ( code ) ) . to . equal ( `new Code('this.a > i', { a: 1, b: { nest: 'mine' } })` ) ;
1852
1852
} ) ;
1853
- it ( 'when multiline code' , function ( ) {
1853
+ it ( 'when it contains multiline code' , function ( ) {
1854
1854
const code = new Code (
1855
1855
function iLoveJavaScript ( ) {
1856
1856
do {
@@ -1881,14 +1881,14 @@ describe('BSON', function () {
1881
1881
* @ignore
1882
1882
*/
1883
1883
context ( 'DBRef' , function ( ) {
1884
- it ( 'when non-nested fields' , function ( ) {
1884
+ it ( 'when it contains non-nested fields' , function ( ) {
1885
1885
const oid = new ObjectId ( 'deadbeefdeadbeefdeadbeef' ) ;
1886
1886
const dbref = new DBRef ( 'namespace' , oid , 'integration_tests_' ) ;
1887
1887
expect ( inspect ( dbref ) ) . to . equal (
1888
1888
`new DBRef('namespace', new ObjectId('deadbeefdeadbeefdeadbeef'), 'integration_tests_')`
1889
1889
) ;
1890
1890
} ) ;
1891
- it ( 'when nested fields' , function ( ) {
1891
+ it ( 'when it contains nested fields' , function ( ) {
1892
1892
const oid = new ObjectId ( 'deadbeefdeadbeefdeadbeef' ) ;
1893
1893
const dbref = new DBRef ( 'namespace' , oid , 'integration_tests_' , {
1894
1894
a : 1 ,
0 commit comments