Skip to content

Commit 38ac5a9

Browse files
fix PR comments
1 parent b8d1280 commit 38ac5a9

File tree

3 files changed

+22
-20
lines changed

3 files changed

+22
-20
lines changed

example/ios/Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ SPEC CHECKSUMS:
3030

3131
PODFILE CHECKSUM: 8f7552fd115ace1988c3db54a69e4a123c448f84
3232

33-
COCOAPODS: 1.15.2
33+
COCOAPODS: 1.14.3

example/pubspec.lock

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -128,26 +128,26 @@ packages:
128128
dependency: transitive
129129
description:
130130
name: leak_tracker
131-
sha256: "78eb209deea09858f5269f5a5b02be4049535f568c07b275096836f01ea323fa"
131+
sha256: "3f87a60e8c63aecc975dda1ceedbc8f24de75f09e4856ea27daf8958f2f0ce05"
132132
url: "https://pub.dev"
133133
source: hosted
134-
version: "10.0.0"
134+
version: "10.0.5"
135135
leak_tracker_flutter_testing:
136136
dependency: transitive
137137
description:
138138
name: leak_tracker_flutter_testing
139-
sha256: b46c5e37c19120a8a01918cfaf293547f47269f7cb4b0058f21531c2465d6ef0
139+
sha256: "932549fb305594d82d7183ecd9fa93463e9914e1b67cacc34bc40906594a1806"
140140
url: "https://pub.dev"
141141
source: hosted
142-
version: "2.0.1"
142+
version: "3.0.5"
143143
leak_tracker_testing:
144144
dependency: transitive
145145
description:
146146
name: leak_tracker_testing
147-
sha256: a597f72a664dbd293f3bfc51f9ba69816f84dcd403cdac7066cb3f6003f3ab47
147+
sha256: "6ba465d5d76e67ddf503e1161d1f4a6bc42306f9d66ca1e8f079a47290fb06d3"
148148
url: "https://pub.dev"
149149
source: hosted
150-
version: "2.0.1"
150+
version: "3.0.1"
151151
lints:
152152
dependency: transitive
153153
description:
@@ -168,18 +168,18 @@ packages:
168168
dependency: transitive
169169
description:
170170
name: material_color_utilities
171-
sha256: "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a"
171+
sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec
172172
url: "https://pub.dev"
173173
source: hosted
174-
version: "0.8.0"
174+
version: "0.11.1"
175175
meta:
176176
dependency: transitive
177177
description:
178178
name: meta
179-
sha256: d584fa6707a52763a52446f02cc621b077888fb63b93bbcb1143a7be5a0c0c04
179+
sha256: bdb68674043280c3428e9ec998512fb681678676b3c54e773629ffe74419f8c7
180180
url: "https://pub.dev"
181181
source: hosted
182-
version: "1.11.0"
182+
version: "1.15.0"
183183
path:
184184
dependency: transitive
185185
description:
@@ -192,10 +192,10 @@ packages:
192192
dependency: transitive
193193
description:
194194
name: platform
195-
sha256: "12220bb4b65720483f8fa9450b4332347737cf8213dd2840d8b2c823e47243ec"
195+
sha256: "9b71283fc13df574056616011fb138fd3b793ea47cc509c189a6c3fa5f8a1a65"
196196
url: "https://pub.dev"
197197
source: hosted
198-
version: "3.1.4"
198+
version: "3.1.5"
199199
process:
200200
dependency: transitive
201201
description:
@@ -261,10 +261,10 @@ packages:
261261
dependency: transitive
262262
description:
263263
name: test_api
264-
sha256: "5c2f730018264d276c20e4f1503fd1308dfbbae39ec8ee63c5236311ac06954b"
264+
sha256: "5b8a98dafc4d5c4c9c72d8b31ab2b23fc13422348d2997120294d3bac86b4ddb"
265265
url: "https://pub.dev"
266266
source: hosted
267-
version: "0.6.1"
267+
version: "0.7.2"
268268
typed_data:
269269
dependency: transitive
270270
description:
@@ -285,10 +285,10 @@ packages:
285285
dependency: transitive
286286
description:
287287
name: vm_service
288-
sha256: b3d56ff4341b8f182b96aceb2fa20e3dcb336b9f867bc0eafc0de10f1048e957
288+
sha256: "5c5f338a667b4c644744b661f309fb8080bb94b18a7e91ef1dbd343bed00ed6d"
289289
url: "https://pub.dev"
290290
source: hosted
291-
version: "13.0.0"
291+
version: "14.2.5"
292292
webdriver:
293293
dependency: transitive
294294
description:
@@ -298,5 +298,5 @@ packages:
298298
source: hosted
299299
version: "3.0.3"
300300
sdks:
301-
dart: ">=3.2.0-0 <4.0.0"
302-
flutter: ">=2.10.0"
301+
dart: ">=3.3.0 <4.0.0"
302+
flutter: ">=3.18.0-18.0.pre.54"

test/w3_header_utils_test.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ void main() {
2323
});
2424

2525
test('generateTracePartialId should generate a non-zero hex string', () {
26-
when(mRandom.nextInt(any)).thenReturnInOrder([0, 217222]);
26+
var callCount = 0;
27+
28+
when(mRandom.nextInt(any)).thenAnswer((_)=>[0, 217222][callCount++]);
2729

2830
final hexString = W3CHeaderUtils().generateTracePartialId().hexPartialId;
2931

0 commit comments

Comments
 (0)