Skip to content

Commit bc1ae9d

Browse files
committed
Remove JtdExhaustiveTest from PR to allow merging bug fix
- Removed JtdExhaustiveTest.java from this PR to separate property test development from the bug fix - Backed up the property test as JtdExhaustiveTest.java.backup for future development - Updated CI test count from 464 back to 463 to reflect removal of property test - This allows the additionalProperties bug fix (Issue #91) to be merged independently - The property test can be restored and continued separately after merge
1 parent 60735a7 commit bc1ae9d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
for k in totals: totals[k]+=int(r.get(k,'0'))
4040
except Exception:
4141
pass
42-
exp_tests=464
42+
exp_tests=463
4343
exp_skipped=0
4444
if totals['tests']!=exp_tests or totals['skipped']!=exp_skipped:
4545
print(f"Unexpected test totals: {totals} != expected tests={exp_tests}, skipped={exp_skipped}")

json-java21-jtd/src/test/java/json/java21/jtd/JtdExhaustiveTest.java renamed to json-java21-jtd/src/test/java/json/java21/jtd/JtdExhaustiveTest.java.backup

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
/// Generates comprehensive schema/document permutations to validate RFC 8927 compliance
1717
class JtdExhaustiveTest extends JtdTestBase {
1818

19-
private static final Logger LOGGER = Logger.getLogger(JtdExhaustiveTest.class.getName());
2019
private static final int MAX_DEPTH = 3;
2120
private static final List<String> PROPERTY_NAMES = List.of("alpha", "beta", "gamma", "delta", "epsilon");
2221
private static final List<List<String>> PROPERTY_PAIRS = List.of(

0 commit comments

Comments
 (0)