Unverified Commit 4cd12fc8 authored by Todd Volkert's avatar Todd Volkert Committed by GitHub

Mark update-packages as non-experimental (#35467)

Marking it as experimental was breaking tests and packaging
scripts on stable branches.
parent 556e374e
......@@ -77,9 +77,6 @@ class UpdatePackagesCommand extends FlutterCommand {
);
}
@override
bool get isExperimental => true;
@override
final String name = 'update-packages';
......
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter_tools/src/commands/update_packages.dart';
import '../src/common.dart';
import '../src/context.dart';
void main() {
group('UpdatePackagesCommand', () {
// Marking it as experimental breaks bots tests and packaging scripts on stable branches.
testUsingContext('is not marked as experimental', () async {
final UpdatePackagesCommand command = UpdatePackagesCommand();
expect(command.isExperimental, isFalse);
});
});
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment