1
0
Fork 0
forked from wry/wry

it: avoid problematic halfway colors

This commit is contained in:
Julian Orth 2024-04-09 14:11:46 +02:00
parent 47d1dffd37
commit b440d29c19
3 changed files with 2 additions and 3 deletions

View file

@ -16,5 +16,4 @@ tasks:
- test: |
cd jay
export RUST_BACKTRACE=1
export GALLIUM_DRIVER=softpipe
./target/debug/jay run-tests

View file

@ -45,9 +45,9 @@ async fn test(run: Rc<TestRun>) -> TestResult {
client.compare_screenshot("1", false).await?;
alpha1.set_multiplier(0.5)?;
alpha1.set_multiplier(0.51)?;
ss1.commit()?;
alpha2.set_multiplier(0.5)?;
alpha2.set_multiplier(0.51)?;
ss2.commit()?;
client.compare_screenshot("2", false).await?;