snapshots: Name convert_glsl_variations_check output consistently.

Rather than adding a `-glsl` suffix to the name, just rely on
`check_targets`' standard naming behavior, treating
`tests/in/variations.glsl` like any other snapshot input.
This commit is contained in:
Jim Blandy 2023-09-23 16:37:15 -07:00
parent 0c69735f59
commit 4329a6a51b
2 changed files with 1 additions and 1 deletions

View File

@ -738,7 +738,7 @@ fn convert_glsl_variations_check() {
&file,
)
.unwrap();
check_targets(&mut module, "variations-glsl", Targets::GLSL, None);
check_targets(&mut module, "variations", Targets::GLSL, None);
}
#[cfg(feature = "glsl-in")]