Skip to content

Commit

Permalink
[#262] updated test assert
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry.bogatko committed Sep 17, 2024
1 parent 80f7744 commit 1b645ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ public void Should_BePossibleTo_GetDownloadDir()
public void Should_BePossibleTo_GetAccessToDriverContext()
{
var driverProcessId = AqualityServices.Browser.DriverContext.DriverService?.ProcessId;
Assert.That(driverProcessId, Is.Not.EqualTo(0));
Assert.That(driverProcessId, Is.Not.Null.And.Not.EqualTo(0), "DriverProcessId should not be null or zero.");
}
}
}

0 comments on commit 1b645ee

Please sign in to comment.