Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Commit selections file and fix test failure with latest D-YAML #54

Merged
merged 1 commit into from
Jun 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 7 additions & 0 deletions dub.selections.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"fileVersion": 1,
"versions": {
"dyaml": "0.10.0",
"tinyendian": "0.2.0"
}
}
2 changes: 1 addition & 1 deletion source/configy/Test.d
Original file line number Diff line number Diff line change
Expand Up @@ -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() == "<unknown>(0:0): chris.jay: Required key was not found in configuration or command line arguments", exc.toString());
}
}

Expand Down