Skip to content

Commit

Permalink
Fix Assert
Browse files Browse the repository at this point in the history
  • Loading branch information
kayoub5 committed Jan 3, 2024
1 parent f7264cf commit f2364f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Test/TestUser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ private static void Bash(string cmd, params string[] args)
{
throw new TimeoutException($"Command '{cmd} {arguments}' timed out");
}
Assert.AreEqual(process.ExitCode, 0);
Assert.That(process.ExitCode, Is.Zero);
}

public static void Delete()
Expand Down

0 comments on commit f2364f0

Please sign in to comment.