Stuart Kent 9 лет назад
Родитель
Сommit
4a4aed8aa9
1 измененных файлов: 2 добавлений и 2 удалений
  1. 2
    2
      POLICIES.md

+ 2
- 2
POLICIES.md Просмотреть файл

@@ -19,7 +19,7 @@ Our policies are not set-in-stone. They represent directions chosen at a point i
19 19
 |:------------|:-----------------|
20 20
 | Exercise added | [Prefer instance methods](#prefer-instance-methods); [Starter implementations](#starter-implementations); [Ignore noninitial tests](#ignore-noninitial-tests) |
21 21
 | Exercise updated | [Ignore noninitial tests](#ignore-noninitial-tests); [Multiple file submissions](#multiple-file-submissions) |
22
-| Track order updated | [Starter implementations](#starter-implementations); [Multiple file submissions](#multiple-file-submissions) |
22
+| Track order changed | [Starter implementations](#starter-implementations); [Multiple file submissions](#multiple-file-submissions) |
23 23
 | New issue observed in track | [Good first patches](#good-first-patches) |
24 24
 | "Good first patch" issue completed | [Good first patches](#good-first-patches) |
25 25
 | Installing Java instructions updated | [Simple onboarding](#simple-onboarding) |
@@ -42,7 +42,7 @@ References: [[1](https://github.com/exercism/xjava/issues/178)]
42 42
 
43 43
 ### Ignore noninitial tests
44 44
 
45
-> All but the first test in an exercise test suite should be annotated `@Ignore`.
45
+> All but the first test in an exercise test suite should be annotated `@Ignore("Remove to run test)` (single test) or `@Ignore("Remove to run tests)` (parametrized test).
46 46
 
47 47
 References: [[1](https://github.com/exercism/xjava/issues/101#issuecomment-249349204)]
48 48