I made 2 tables, side by side, based upon egreg's answer here: table positions within a minipage
\documentclass{article}
\usepackage{booktabs,lipsum,calc}
\newsavebox{\leftbox}
\newsavebox{\rightbox}
\begin{document}
\begin{table}[tbh!]
\begin{lrbox}{\leftbox}
\addtolength{\tabcolsep}{2pt}%
\begin{tabular}{ | p{1.7cm} | p{4cm}| p{0.8cm} | }
\hline
col 1-1 & col 1-2 & col 1-3 \
\hline
\end{tabular}
\end{lrbox}
\begin{lrbox}{\rightbox}
\begin{tabular}{ |c|c| }
\hline
col 2-1 & col 2-2\
\hline
\end{tabular}
\end{lrbox}
\centering
\makebox[0pt]{%
\begin{minipage}[b]{\wd\leftbox} % A minipage that covers half the page
\centering
\caption{obs=1000, Coverage Probability}
\usebox{\leftbox}
\end{minipage}\quad
\begin{minipage}[b]{\wd\rightbox}
\centering
\caption{obs=1000, Test Statistic}
\usebox{\rightbox}
\end{minipage}%
}
\end{table}
\end{document}
It gives this:

As you see the tables are not equal and the description of the second table is shrunk too much.
How can I put the second table to the center of the empty space left and make the description text wider? So the text stretched from the first table right margin to the page right margin.
