Skip to content

Commit

Permalink
Removed duplicate test member data (#2098)
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeLeithead authored Aug 9, 2024
1 parent 1e78f10 commit 7097cd8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ public class TimeSpanToSecondsConverterTests : BaseConverterTest<TimeSpanToSecon
[TimeSpan.MaxValue, 922337203685.4775],
[TimeSpan.FromSeconds(100), 100],
[new TimeSpan(), 0],
[TimeSpan.Zero, 0],
[default(TimeSpan), 0],
[TimeSpan.MinValue, -922337203685.4775],
];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public async Task BackgroundColorTo_VerifyColorChanged()
Assert.Equal(updatedBackgroundColor, element.BackgroundColor);
}

[Fact(Timeout = (int)TestDuration.Short)]
[Fact(Timeout = (int)TestDuration.Medium)]
public async Task BackgroundColorTo_CancellationTokenExpired()
{
var cts = new CancellationTokenSource(TimeSpan.FromMilliseconds(1));
Expand Down

0 comments on commit 7097cd8

Please sign in to comment.