Skip to content

Commit

Permalink
Fixes unit test
Browse files Browse the repository at this point in the history
Missed from b3a37f2
  • Loading branch information
atruskie committed Nov 29, 2017
1 parent 868abae commit 082427d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Acoustics/Acoustics.Test/AnalysisBase/FileSegmentTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="UnitTest1.cs" company="QutEcoacoustics">
// <copyright file="FileSegmentTests.cs" company="QutEcoacoustics">
// All code in this file and all associated files are the copyright and property of the QUT Ecoacoustics Research Group (formerly MQUTeR, and formerly QUT Bioacoustics Research Group).
// </copyright>

Expand Down Expand Up @@ -64,7 +64,7 @@ public void SecondConstructorAutomaticallyExtractsInfo()
var asset = PathHelper.ResolveAsset(testFile);
var info = TestHelper.AudioDetails[testFile];

FileSegment s = new FileSegment(asset, TimeAlignment.None);
FileSegment s = new FileSegment(asset, TimeAlignment.None, null, FileSegment.FileDateBehavior.Try);

Assert.AreEqual(null, s.SegmentStartOffset);
Assert.AreEqual(null, s.SegmentEndOffset);
Expand Down

0 comments on commit 082427d

Please sign in to comment.