diff --git a/tests/markdown/variables.test.js b/tests/markdown/variables.test.js
index 9a02d15eb..41259da7e 100644
--- a/tests/markdown/variables.test.js
+++ b/tests/markdown/variables.test.js
@@ -404,8 +404,10 @@ describe('Variable names that are subsets of other names', ()=>{
});
});
-describe('Don\'t Eat all the parentheticals!', ()=>{
- const source='\n| title 1 | title 2 | title 3 | title 4|\n|-----------|---------|---------|--------|\n|[foo](bar) | Ipsum | ) | ) |\n';
- const rendered = Markdown.render(source).trimReturns();
- expect(rendered).toBe('
| title 1 | title 2 | title 3 | title 4 |
|---|
| foo | Ipsum | ) | ) |
');
+describe('Regression Tests', ()=>{
+ it('Don\'t Eat all the parentheticals!', function() {
+ const source='\n| title 1 | title 2 | title 3 | title 4|\n|-----------|---------|---------|--------|\n|[foo](bar) | Ipsum | ) | ) |\n';
+ const rendered = Markdown.render(source).trimReturns();
+ expect(rendered).toBe('| title 1 | title 2 | title 3 | title 4 |
|---|
| foo | Ipsum | ) | ) |
');
+ });
});
\ No newline at end of file