Skip to content

Commit

Permalink
fix ifs upload skip
Browse files Browse the repository at this point in the history
  • Loading branch information
noise64 committed Feb 5, 2025
1 parent bdea52e commit ec0fb62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion golem-test-framework/src/dsl/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ impl<T: TestDependencies + Send + Sync> TestDsl for T {
account_id: &AccountId,
path: &Path,
) -> InitialComponentFileKey {
if !self.component_service().handles_ifs_upload() {
if self.component_service().handles_ifs_upload() {
return InitialComponentFileKey("dummy-ifs-key".to_string());
}

Expand Down

0 comments on commit ec0fb62

Please sign in to comment.