Index: sdk/lib/_internal/pub/test/validator/size_test.dart |
diff --git a/sdk/lib/_internal/pub/test/validator/size_test.dart b/sdk/lib/_internal/pub/test/validator/size_test.dart |
index 9949280ef75ad17469de2a0f6c2630f099c5389a..a03d2854812c3ff5efa34785f81c85af018d4cf1 100644 |
--- a/sdk/lib/_internal/pub/test/validator/size_test.dart |
+++ b/sdk/lib/_internal/pub/test/validator/size_test.dart |
@@ -22,12 +22,12 @@ main() { |
setUp(d.validPackage.create); |
- integration('should consider a package valid if it is <= 10 MB', () { |
+ integration('should consider a package valid if it is <= 100 MB', () { |
expectNoValidationError(size(100)); |
- expectNoValidationError(size(10 * math.pow(2, 20))); |
+ expectNoValidationError(size(100 * math.pow(2, 20))); |
}); |
- integration('should consider a package invalid if it is more than 10 MB', () { |
- expectValidationError(size(10 * math.pow(2, 20) + 1)); |
+ integration('should consider a package invalid if it is more than 100 MB', () { |
nweiz
2015/04/03 19:38:00
Long line.
Bob Nystrom
2015/04/03 20:03:33
Done.
|
+ expectValidationError(size(100 * math.pow(2, 20) + 1)); |
}); |
} |