We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b812598 commit 01b73b9Copy full SHA for 01b73b9
test/test-options.cpp
@@ -551,7 +551,7 @@ TEST(Test_Options, lsp_server) {
551
}
552
553
554
-TEST(Test_Options, dash_dash_stdin) {
+TEST(Test_Options, stdin_file) {
555
{
556
Options o = parse_options_no_errors({"--stdin", "one.js"});
557
ASSERT_EQ(o.files_to_lint.size(), 2);
@@ -587,13 +587,6 @@ TEST(Test_Options, is_stdin_emplaced_only_once) {
587
588
589
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
-
597
TEST(Test_Options, print_help) {
598
599
Options o = parse_options_no_errors({"--help"});
0 commit comments