Skip to content

Commit

Permalink
Remove extra comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jssblck committed Dec 10, 2024
1 parent 104e469 commit d819646
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions lib/tests/it/registry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ use simple_test_case::test_case;
async fn single_platform_layers(image: &str, platform: Option<Platform>) -> Result<()> {
let reference = image.parse::<Reference>()?;
let layers = circe::registry::layers(platform.as_ref(), &reference).await?;

// Verify we got some layers back
assert!(!layers.is_empty(), "image should have at least one layer");
Ok(())
}
Expand All @@ -20,8 +18,6 @@ async fn single_platform_layers(image: &str, platform: Option<Platform>) -> Resu
async fn multi_platform_layers(image: &str, platform: Platform) -> Result<()> {
let reference = image.parse::<Reference>()?;
let layers = circe::registry::layers(Some(&platform), &reference).await?;

// Verify we got some layers back
assert!(!layers.is_empty(), "image should have at least one layer");
Ok(())
}

0 comments on commit d819646

Please sign in to comment.