summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2017-01-07 05:06:39 (EST)
committer P. J. McDermott <pj@pehjota.net>2017-01-07 05:06:39 (EST)
commit70efc7b6cd66d4aaabb45f5adca928d45324f2cf (patch)
tree29b892cf53e6ade18eca7642aac6df3611834565
parent1a6ff2903dc4e26be4a2921914feba1d973730d1 (diff)
downloaddecmath.js-70efc7b6cd66d4aaabb45f5adca928d45324f2cf.zip
decmath.js-70efc7b6cd66d4aaabb45f5adca928d45324f2cf.tar.gz
decmath.js-70efc7b6cd66d4aaabb45f5adca928d45324f2cf.tar.bz2
test/13_drhtz-drhfz.js: Improve context() title arguments
-rw-r--r--test/13_drhtz-drhfz.js6
1 files changed, 3 insertions, 3 deletions
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],