Skip to content

Commit 01b73b9

Browse files
committed
refactor(test): delete duplicate test
1 parent b812598 commit 01b73b9

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

test/test-options.cpp

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ TEST(Test_Options, lsp_server) {
551551
}
552552
}
553553

554-
TEST(Test_Options, dash_dash_stdin) {
554+
TEST(Test_Options, stdin_file) {
555555
{
556556
Options o = parse_options_no_errors({"--stdin", "one.js"});
557557
ASSERT_EQ(o.files_to_lint.size(), 2);
@@ -587,13 +587,6 @@ TEST(Test_Options, is_stdin_emplaced_only_once) {
587587
}
588588
}
589589

590-
TEST(Test_Options, single_hyphen_is_argument) {
591-
{
592-
Options o = parse_options_no_errors({"one.js", "-", "two.js"});
593-
ASSERT_EQ(o.files_to_lint.size(), 3);
594-
}
595-
}
596-
597590
TEST(Test_Options, print_help) {
598591
{
599592
Options o = parse_options_no_errors({"--help"});

0 commit comments

Comments
 (0)