Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -328,12 +328,10 @@ TEST_F(TestTypeSignature, spaces01) {
}

TEST_F(TestTypeSignature, spaces04) {
assertRowSignatureContainsThrows(
assertRowSignature(
"row(interval interval year to month)",
rowSignature(namedParameter(
"interval", false, signature("interval year to month"))),
VeloxUserError,
"Specified element is not found : INTERVAL YEAR TO MONTH");
"interval", false, signature("interval year to month"))));
}

TEST_F(TestTypeSignature, spaces05) {
Expand All @@ -353,11 +351,9 @@ TEST_F(TestTypeSignature, spaces06) {
}

TEST_F(TestTypeSignature, spaces09) {
assertRowSignatureContainsThrows(
assertRowSignature(
"row(interval year to month)",
rowSignature(unnamedParameter(signature("interval year to month"))),
VeloxUserError,
"Specified element is not found : INTERVAL YEAR TO MONTH");
rowSignature(unnamedParameter(signature("interval year to month"))));
}

TEST_F(TestTypeSignature, spaces10) {
Expand Down