Skip to content

Commit

Permalink
rewrite to avoid build failure on linux CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tlively committed Oct 21, 2023
1 parent 0743c14 commit 36232dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/gtest/lattices.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ TEST(InvertedLattice, Meet) {
}

TEST(InvertedLattice, DoubleInverted) {
analysis::Inverted<analysis::Inverted<analysis::Bool>> identity(
analysis::Inverted{analysis::Bool{}});
using DoubleInverted = analysis::Inverted<analysis::Inverted<analysis::Bool>>;
DoubleInverted identity(analysis::Inverted<analysis::Bool>{analysis::Bool{}});
EXPECT_FALSE(identity.getBottom());
EXPECT_TRUE(identity.getTop());
}

0 comments on commit 36232dc

Please sign in to comment.