change from ifdef to if

release/4.3a0
Varun Agrawal 2025-01-10 11:11:03 -05:00
parent fbe4ad1dc9
commit 62b0ed6678
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ TEST(GaussianBayesNet, sample) {
EXPECT_LONGS_EQUAL(2, actual.size());
// regressions
#ifdef __APPLE__ || _WIN32
#if __APPLE__ || _WIN32
EXPECT(assert_equal(Vector2(20.0129382, 40.0039798), actual[X(1)], 1e-5));
EXPECT(assert_equal(Vector2(110.032083, 230.039811), actual[X(0)], 1e-5));
#elif __linux__