Skip to content

Commit

Permalink
it: avoid problematic halfway colors
Browse files Browse the repository at this point in the history
  • Loading branch information
mahkoh committed Apr 9, 2024
1 parent 47d1dff commit b440d29
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .builds/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,4 @@ tasks:
- test: |
cd jay
export RUST_BACKTRACE=1
export GALLIUM_DRIVER=softpipe
./target/debug/jay run-tests
4 changes: 2 additions & 2 deletions src/it/tests/t0039_alpha_modifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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?;
Expand Down
Binary file modified src/it/tests/t0039_alpha_modifier/screenshot_2.qoi
Binary file not shown.

0 comments on commit b440d29

Please sign in to comment.