[go: nahoru, domu]

Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Rename instrumentation_adapter plugin to e2e plugin #2161

Merged
merged 21 commits into from
Oct 8, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix compile errors, pod spec
  • Loading branch information
collinjackson committed Oct 7, 2019
commit 19336c905775aefc36c29ef5840523675881a9cf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class E2EPlugin implements MethodCallHandler {
/** Plugin registration. */
public static void registerWith(Registrar registrar) {
final MethodChannel channel = new MethodChannel(registrar.messenger(), CHANNEL);
channel.setMethodCallHandler(new InstrumentationAdapterPlugin());
channel.setMethodCallHandler(new E2EPlugin());
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public Description getDescription() {
public void run(RunNotifier notifier) {
Map<String, String> results = null;
try {
results = InstrumentationAdapterPlugin.testResults.get();
results = E2EPlugin.testResults.get();
} catch (ExecutionException | InterruptedException e) {
throw new IllegalThreadStateException("Unable to get test results");
}
Expand Down
2 changes: 1 addition & 1 deletion packages/e2e/ios/e2e.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Pod::Spec.new do |s|
s.name = 'e2e'
s.version = '0.0.1'
s.summary = 'Instrumentation adapter.'
s.summary = 'Adapter for e2e tests.'
s.description = <<-DESC
Runs tests that use the flutter_test API as integration tests.
DESC
Expand Down