Skip to content

Commit

Permalink
fix: formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Shahroz16 committed Jan 1, 2023
1 parent 5b82f6b commit d67fa7e
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion ios/customer_io.podspec
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'customer_io'
s.version = '1.0.0-alpha.4'
s.version = '1.0.0-alpha.5'
s.summary = 'Customer.io plugin for Flutter'
s.homepage = 'https://customer.io/'
s.license = { :file => '../LICENSE' }
Expand Down
1 change: 0 additions & 1 deletion lib/customer_io_method_channel.dart
Original file line number Diff line number Diff line change
Expand Up @@ -123,5 +123,4 @@ class CustomerIOMethodChannel extends CustomerIOPlatform {
}
}
}

}
1 change: 0 additions & 1 deletion lib/customer_io_platform_interface.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ abstract class CustomerIOPlatform extends PlatformInterface {
_instance = instance;
}


Future<void> initialize({
required CustomerIOConfig config,
}) {
Expand Down
2 changes: 1 addition & 1 deletion lib/customer_io_plugin_version.dart
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Don't modify this line - it's automatically updated
const version = "1.0.0-alpha.4";
const version = "1.0.0-alpha.5";
1 change: 0 additions & 1 deletion test/customer_io_method_channel_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,4 @@ void main() {
tearDown(() {
channel.setMockMethodCallHandler(null);
});

}
12 changes: 7 additions & 5 deletions test/customer_io_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import 'package:plugin_platform_interface/plugin_platform_interface.dart';
class MockCustomerIoPlatform
with MockPlatformInterfaceMixin
implements CustomerIOPlatform {

@override
Future<void> initialize({required CustomerIOConfig config}) {
// TODO: implement config
Expand All @@ -20,12 +19,15 @@ class MockCustomerIoPlatform
}

@override
void identify({required String identifier, Map<String, dynamic> attributes = const {}}) {
void identify(
{required String identifier,
Map<String, dynamic> attributes = const {}}) {
// TODO: implement identify
}

@override
void screen({required String name, Map<String, dynamic> attributes = const {}}) {
void screen(
{required String name, Map<String, dynamic> attributes = const {}}) {
// TODO: implement screen
}

Expand All @@ -40,10 +42,10 @@ class MockCustomerIoPlatform
}

@override
void track({required String name, Map<String, dynamic> attributes = const {}}) {
void track(
{required String name, Map<String, dynamic> attributes = const {}}) {
// TODO: implement track
}

}

void main() {
Expand Down

0 comments on commit d67fa7e

Please sign in to comment.