We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 031310d commit 4c66650Copy full SHA for 4c66650
1 file changed
packages/package_info_plus/package_info_plus/example/integration_test/package_info_plus_test.dart
@@ -130,10 +130,10 @@ void main() {
130
),
131
);
132
} else if (Platform.isWindows) {
133
- expect(info.appName, 'example');
+ expect(info.appName, 'package_info_plus_example');
134
expect(info.buildNumber, '4');
135
expect(info.buildSignature, isEmpty);
136
- expect(info.packageName, 'example');
+ expect(info.packageName, 'package_info_plus_example');
137
expect(info.version, '1.2.3');
138
expect(info.installerStore, null);
139
expect(
@@ -221,7 +221,7 @@ void main() {
221
expect(find.text('Not set'), findsOneWidget);
222
expect(find.textContaining(installTimeRegex), findsNWidgets(2));
223
224
- expect(find.text('example'), findsNWidgets(2));
+ expect(find.text('package_info_plus_example'), findsNWidgets(2));
225
expect(find.text('1.2.3'), findsOneWidget);
226
expect(find.text('4'), findsOneWidget);
227
0 commit comments