diff --git a/.gitignore b/.gitignore index 01b26a4..e47c06b 100644 --- a/.gitignore +++ b/.gitignore @@ -21,9 +21,6 @@ __dummy.html docs/ *-test-library *-test-unittest -# Since this is a library, we ignore `dub.selections.json`. -# It only matters when used with an application. -dub.selections.json # Code coverage *.lst diff --git a/dub.selections.json b/dub.selections.json new file mode 100644 index 0000000..c1f6b8e --- /dev/null +++ b/dub.selections.json @@ -0,0 +1,7 @@ +{ + "fileVersion": 1, + "versions": { + "dyaml": "0.10.0", + "tinyendian": "0.2.0" + } +} diff --git a/source/configy/Test.d b/source/configy/Test.d index 748f4d5..4240b2f 100644 --- a/source/configy/Test.d +++ b/source/configy/Test.d @@ -487,7 +487,7 @@ unittest } catch (ConfigException exc) { - assert(exc.toString() == "(0:0): chris.jay: Required key was not found in configuration or command line arguments"); + assert(exc.toString() == "(0:0): chris.jay: Required key was not found in configuration or command line arguments", exc.toString()); } }