Skip to content

Commit

Permalink
remove oldC check
Browse files Browse the repository at this point in the history
ctags --list-languages no longer contains it
  • Loading branch information
vladak committed Aug 22, 2023
1 parent e6d2d0e commit 93694f5
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ void getLanguages() {
assertNotNull(result, "getLanguages() should always return non null");
assertFalse(result.isEmpty(), "should get Ctags languages");
assertTrue(result.contains("C++"), "Ctags languages should contain C++");
// Test that the [disabled] tag is stripped for OldC.
assertTrue(result.contains("OldC"), "Ctags languages should contain OldC");
}

@Test
Expand Down

0 comments on commit 93694f5

Please sign in to comment.