From 70efc7b6cd66d4aaabb45f5adca928d45324f2cf Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Sat, 07 Jan 2017 05:06:39 -0500 Subject: test/13_drhtz-drhfz.js: Improve context() title arguments --- diff --git a/test/13_drhtz-drhfz.js b/test/13_drhtz-drhfz.js index c6b5d61..b2067c9 100644 --- a/test/13_drhtz-drhfz.js +++ b/test/13_drhtz-drhfz.js @@ -33,7 +33,7 @@ var assert = require("assert"); require("../lib/decmath.js"); describe("drhtz() and drhfz()", function() { - context("Basic tests", function() { + context("without tie-breaking", function() { var tests = [ /* a p r functions */ [ 23.1 , 0, "23." , drhtz, drhfz], @@ -57,7 +57,7 @@ describe("drhtz() and drhfz()", function() { }); }); }); - context("Tie-breaking tests", function() { + context("with tie-breaking", function() { var tests = [ /* a p r functions */ [ 23.5 , 0, "23." , drhtz ], @@ -81,7 +81,7 @@ describe("drhtz() and drhfz()", function() { }); }); }); - context("Invalid precision tests", function() { + context("with invalid precision", function() { var tests = [ /* a p r functions */ [ 23 , 1, null, drhtz, drhfz], -- cgit v0.9.1