diff options
author | crupest <crupest@outlook.com> | 2021-05-15 22:31:59 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-05-15 22:31:59 +0800 |
commit | d832591db5ddc594a97cc8a75739e0868094e3ec (patch) | |
tree | 97cb22dd8e60a0372d6abcb7992dc18caa0d1604 /BackEnd/Timeline.Tests/IntegratedTests/TimelinePostTest.cs | |
parent | 8f88c6c995b340a64086aedd27d312d5732d3e7d (diff) | |
download | timeline-d832591db5ddc594a97cc8a75739e0868094e3ec.tar.gz timeline-d832591db5ddc594a97cc8a75739e0868094e3ec.tar.bz2 timeline-d832591db5ddc594a97cc8a75739e0868094e3ec.zip |
test: Use xunit logging output.
Diffstat (limited to 'BackEnd/Timeline.Tests/IntegratedTests/TimelinePostTest.cs')
-rw-r--r-- | BackEnd/Timeline.Tests/IntegratedTests/TimelinePostTest.cs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/BackEnd/Timeline.Tests/IntegratedTests/TimelinePostTest.cs b/BackEnd/Timeline.Tests/IntegratedTests/TimelinePostTest.cs index ab8f6f66..749b2cfd 100644 --- a/BackEnd/Timeline.Tests/IntegratedTests/TimelinePostTest.cs +++ b/BackEnd/Timeline.Tests/IntegratedTests/TimelinePostTest.cs @@ -53,11 +53,9 @@ namespace Timeline.Tests.IntegratedTests };
}
- private readonly ITestOutputHelper _outputHelper;
-
- public TimelinePostTest(ITestOutputHelper outputHelper)
+ public TimelinePostTest(ITestOutputHelper testOutputHelper) : base(testOutputHelper)
{
- _outputHelper = outputHelper;
+
}
[Theory]
|