Skip to content

Commit

Permalink
formatted code
Browse files Browse the repository at this point in the history
  • Loading branch information
jyameo committed Oct 10, 2024
1 parent 64ba845 commit db77882
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
6 changes: 2 additions & 4 deletions test_common/lib/sdk_asset_generator.dart
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,7 @@ class SdkAssetGenerator {

// Files to generate
final jsPath = p.join(
outputDir.path,
resolveSdkJsFilename(canaryFeatures: canaryFeatures));
outputDir.path, resolveSdkJsFilename(canaryFeatures: canaryFeatures));
final jsMapPath = p.setExtension(jsPath, '.js.map');
final fullDillPath = p.setExtension(jsPath, '.dill');

Expand Down Expand Up @@ -188,8 +187,7 @@ class SdkAssetGenerator {

// Generate missing files.
outputDir = fileSystem.systemTempDirectory.createTempSync();
final summaryPath =
p.join(outputDir.path, sdkLayout.summaryFileName);
final summaryPath = p.join(outputDir.path, sdkLayout.summaryFileName);

_logger.info('Generating SDK summary files...');

Expand Down
1 change: 0 additions & 1 deletion test_common/test/sdk_asset_generator_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ void main() {
late String ddcSdkJsPath;
late String ddcSdkJsMapPath;


setUp(() async {
setCurrentLogWriter(debug: debug);
tempDir = Directory.systemTemp.createTempSync();
Expand Down

0 comments on commit db77882

Please sign in to comment.