Skip to content

Commit

Permalink
test: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Murat Mehmet committed Jul 16, 2024
1 parent d539f8f commit 6988d1c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/__tests__/unit/tasks/podFileTask.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -675,9 +675,9 @@ target 'TestApp' do
pre_install do |installer|
Pod::Installer::Xcode::TargetValidator.send(:define_method, :verify_no_static_framework_transitive_dependencies) {}
installer.pod_targets.each do |pod|
if $static_libs.include?(pod.name)
def pod.build_type;
installer.pod_targets.each do |pod|
if $static_libs.include?(pod.name)
def pod.build_type;
Pod::BuildType.static_library
end
end
Expand Down Expand Up @@ -712,9 +712,9 @@ target 'TestApp' do
pre_install do |installer|
Pod::Installer::Xcode::TargetValidator.send(:define_method, :verify_no_static_framework_transitive_dependencies) {}
installer.pod_targets.each do |pod|
if $static_libs.include?(pod.name)
def pod.build_type;
installer.pod_targets.each do |pod|
if $static_libs.include?(pod.name)
def pod.build_type;
Pod::BuildType.static_library
end
end
Expand Down

0 comments on commit 6988d1c

Please sign in to comment.