[Tex/LaTex] Adding vertical space between two \hline

spacingtables

How can I add vertical space between the double line in the example below? I tried to use \vspace, but that results in a Misplaced \noalign error.

\documentclass{article}

\begin{document}
    \begin{table}[h]
        \centering
        \begin{tabular}{|l|l|}
            \hline
            Test 1 & Blah \\
            \hline
            % <Add space here>
            \hline
            Test 2 & Blah \\
            \hline
        \end{tabular}
    \end{table}
\end{document}

enter image description here

Best Answer

The space is controlled by the parameter \doublerulesep which you can set at any point in the document

\setlength\doublerulesep{2cm} 

Either in the preamble for the whole document or if just this table, inside the table environment alongside \centering and any other local declarations.