From 104364e8c6d44fe43453b6a0e42a6577f57e00d0 Mon Sep 17 00:00:00 2001 From: Nicholas Shahan Date: Thu, 24 Jul 2025 14:09:30 -0700 Subject: [PATCH] Change tls_test.dart to _webdevSoundSmoke fixture This fixture is a web app that doesn't require any experimental language feature flags to compile. --- .../localhost+2-key.pem | 0 .../{_experimentSound => _webdevSoundSmoke}/localhost+2.pem | 0 webdev/test/tls_test.dart | 3 +-- 3 files changed, 1 insertion(+), 2 deletions(-) rename fixtures/{_experimentSound => _webdevSoundSmoke}/localhost+2-key.pem (100%) rename fixtures/{_experimentSound => _webdevSoundSmoke}/localhost+2.pem (100%) diff --git a/fixtures/_experimentSound/localhost+2-key.pem b/fixtures/_webdevSoundSmoke/localhost+2-key.pem similarity index 100% rename from fixtures/_experimentSound/localhost+2-key.pem rename to fixtures/_webdevSoundSmoke/localhost+2-key.pem diff --git a/fixtures/_experimentSound/localhost+2.pem b/fixtures/_webdevSoundSmoke/localhost+2.pem similarity index 100% rename from fixtures/_experimentSound/localhost+2.pem rename to fixtures/_webdevSoundSmoke/localhost+2.pem diff --git a/webdev/test/tls_test.dart b/webdev/test/tls_test.dart index e6aa47a42..1b580c65d 100644 --- a/webdev/test/tls_test.dart +++ b/webdev/test/tls_test.dart @@ -28,7 +28,7 @@ void main() { configureLogWriter(debug); await testRunner.setUpAll(); exampleDirectory = - p.absolute(p.join(p.current, '..', 'fixtures', '_experimentSound')); + p.absolute(p.join(p.current, '..', 'fixtures', '_webdevSoundSmoke')); final process = await TestProcess.start( 'dart', @@ -53,7 +53,6 @@ void main() { '--hostname=0.0.0.0', '--tls-cert-chain=localhost+2.pem', '--tls-cert-key=localhost+2-key.pem', - '--enable-experiment=dot-shorthands', ]; final process =