Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dlang-tour/core
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d203d2b0fad6d4b8e5c58faa4805f8fe816d340a
Choose a base ref
..
head repository: dlang-tour/core
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b8f932cf76ad98883327fbb84dc460ff4176ad12
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 source/rest/apiv1.d
2 changes: 1 addition & 1 deletion source/rest/apiv1.d
Original file line number Diff line number Diff line change
@@ -252,5 +252,5 @@ unittest
auto runner = new ApiV1(new StupidLocal(), null);
auto input = ApiV1.RunInput(source);
auto res = runner.run(input);
assert(res == ApiV1.RunOutput(x"80 0A"c, true, [], []));
assert(res == ApiV1.RunOutput(x"80 0A"c, true, [], []), res.to!string);
}