@@ -9,7 +9,7 @@ import {settings} from './settings';
99
1010// OBJECT QUERY TESTS 
1111// ================================================================================================ 
12- describe ( 'Object query tests' ,  function  ( )  { 
12+ describe ( 'Object query tests; ' ,  function  ( )  { 
1313
1414    it ( 'Object query should return a single object' ,  ( )  =>  { 
1515        return  new  Database ( settings ) . connect ( ) . then ( ( session )  =>  { 
@@ -218,7 +218,7 @@ describe('Object query tests', function () {
218218
219219// LIST QUERY TESTS 
220220// ================================================================================================ 
221- describe ( 'List query tests' ,  function  ( )  { 
221+ describe ( 'List query tests; ' ,  function  ( )  { 
222222
223223    it ( 'List query should return an array of objects' ,  ( )  =>  { 
224224        return  new  Database ( settings ) . connect ( ) . then ( ( session )  =>  { 
@@ -411,7 +411,7 @@ describe('List query tests', function () {
411411
412412// NON-RESULT QUERY TESTS 
413413// ================================================================================================ 
414- describe ( 'Non-result query tests' ,  function  ( )  { 
414+ describe ( 'Non-result query tests; ' ,  function  ( )  { 
415415
416416    it ( 'A non-result query should produce no results' ,  ( )  =>  { 
417417        return  new  Database ( settings ) . connect ( ) . then ( ( session )  =>  { 
@@ -442,7 +442,7 @@ describe('Non-result query tests', function () {
442442
443443// MIXED QUERY TESTS 
444444// ================================================================================================ 
445- describe ( 'Mixed query tests' ,  function  ( )  { 
445+ describe ( 'Mixed query tests; ' ,  function  ( )  { 
446446
447447    it ( 'Multiple mixed queries should produce a Map of results' ,  ( )  =>  { 
448448        return  new  Database ( settings ) . connect ( ) . then ( ( session )  =>  { 
@@ -557,7 +557,7 @@ describe('Mixed query tests', function () {
557557
558558// PARAMETRIZED QUERY TESTS 
559559// ================================================================================================ 
560- describe ( 'Parametrized query tests' ,  function  ( )  { 
560+ describe ( 'Parametrized query tests; ' ,  function  ( )  { 
561561
562562    it ( 'Object query parametrized with number should retrive correct row' ,  ( )  =>  { 
563563        return  new  Database ( settings ) . connect ( ) . then ( ( session )  =>  { 
@@ -728,7 +728,7 @@ describe('Parametrized query tests', function () {
728728
729729// SESSION LIFECYCLE TESTS 
730730// ================================================================================================ 
731- describe ( 'Session lifecycle tests' ,  function  ( )  { 
731+ describe ( 'Session lifecycle tests; ' ,  function  ( )  { 
732732
733733    it ( 'Closing a session should return a connection back to the pool' ,  ( )  =>  { 
734734        const  database  =  new  Database ( settings ) ; 
@@ -861,7 +861,7 @@ describe('Session lifecycle tests', function () {
861861
862862// ERROR CONDITION TESTS 
863863// ================================================================================================ 
864- describe ( 'Error condition tests' ,  function  ( )  { 
864+ describe ( 'Error condition tests; ' ,  function  ( )  { 
865865
866866    it ( 'Query execution error should close the session and release the connection back to the pool' ,  ( )  =>  { 
867867        const  database  =  new  Database ( settings ) ; 
0 commit comments