Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit b38d534

Browse files
committed
[url_launcher_linux] fix formatting
1 parent 4d03c3b commit b38d534

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

packages/url_launcher/url_launcher_linux/linux/test/url_launcher_linux_test.cc

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ TEST(UrlLauncherPlugin, CanLaunchFailureUnhandled) {
4141

4242
TEST(UrlLauncherPlugin, CanLaunchFileSuccess) {
4343
g_autoptr(FlValue) args = fl_value_new_map();
44-
fl_value_set_string_take(args, "url",
45-
fl_value_new_string("file:/"));
44+
fl_value_set_string_take(args, "url", fl_value_new_string("file:/"));
4645
FlMethodResponse* response = can_launch(nullptr, args);
4746
ASSERT_NE(response, nullptr);
4847
ASSERT_TRUE(FL_IS_METHOD_SUCCESS_RESPONSE(response));
@@ -54,8 +53,8 @@ TEST(UrlLauncherPlugin, CanLaunchFileSuccess) {
5453

5554
TEST(UrlLauncherPlugin, CanLaunchFailureInvalidFileExtension) {
5655
g_autoptr(FlValue) args = fl_value_new_map();
57-
fl_value_set_string_take(args, "url",
58-
fl_value_new_string("file:///madeup.madeupextension"));
56+
fl_value_set_string_take(
57+
args, "url", fl_value_new_string("file:///madeup.madeupextension"));
5958
FlMethodResponse* response = can_launch(nullptr, args);
6059
ASSERT_NE(response, nullptr);
6160
ASSERT_TRUE(FL_IS_METHOD_SUCCESS_RESPONSE(response));

0 commit comments

Comments
 (0)