Skip to content

Commit c347030

Browse files
authored
Re-enable a short option pack test (#236)
1 parent 3445371 commit c347030

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Tests/ArgumentParserEndToEndTests/ShortNameEndToEndTests.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ extension ShortNameEndToEndTests {
6565
}
6666

6767
func testParsing_combined() throws {
68-
// AssertParse(Bar.self, ["-vf", "myfile", "foo"]) { options in
69-
// XCTAssertEqual(options.verbose, true)
70-
// XCTAssertEqual(options.file, "myfile")
71-
// XCTAssertEqual(options.name, "foo")
72-
// }
68+
AssertParse(Bar.self, ["-vf", "myfile", "foo"]) { options in
69+
XCTAssertEqual(options.verbose, true)
70+
XCTAssertEqual(options.file, "myfile")
71+
XCTAssertEqual(options.name, "foo")
72+
}
7373

7474
AssertParse(Bar.self, ["-fv", "myfile", "foo"]) { options in
7575
XCTAssertEqual(options.verbose, true)

0 commit comments

Comments
 (0)