Skip to content

Commit

Permalink
made the mutation work again
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Schadek authored and burner committed Apr 4, 2019
1 parent 17bde31 commit 0e96030
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/dub.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"burner"
],
"copyright": "Copyright © 2019, burner",
"dflags" : ["-v", "-cov"],
"dflags" : [],
"dependencies": {
"vibe-d": "~>0.8.2",
"vibe-d:tls": "~>0.8.2",
Expand Down
5 changes: 1 addition & 4 deletions test/source/app.d
Original file line number Diff line number Diff line change
Expand Up @@ -96,14 +96,11 @@ void main() {
delegate(string name, Json parent, Json args,
ref CustomContext con) @trusted
{
logf("args %s", args);
long shipId;
bool ok = hasPathTo(args, "input.shipId", shipId);
writefln("%s %s", ok, shipId);
string nname;
ok = hasPathTo(args, "input.name", nname);
writefln("%s %s", ok, nname);
logf("%s %s %s", shipId, nname);
//logf("%s %s %s", shipId, nname);

Json ret;

Expand Down

0 comments on commit 0e96030

Please sign in to comment.