From 380a138ca55531489e4d7af38ff241b4a1ba5eff Mon Sep 17 00:00:00 2001 From: Nicholas Sharp Date: Mon, 30 Dec 2024 10:56:32 -0500 Subject: [PATCH] use a more reasonable test window size --- test/src/basics_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/src/basics_test.cpp b/test/src/basics_test.cpp index fc39eae3..ceb35a64 100644 --- a/test/src/basics_test.cpp +++ b/test/src/basics_test.cpp @@ -113,11 +113,11 @@ TEST_F(PolyscopeTest, EmptyBuffer) { TEST_F(PolyscopeTest, WindowProperties) { // set/get window size - polyscope::view::setWindowSize(300, 1000); + polyscope::view::setWindowSize(300, 400); int32_t w, h; std::tie(w, h) = polyscope::view::getWindowSize(); EXPECT_EQ(w, 300); - EXPECT_EQ(h, 1000); + EXPECT_EQ(h, 400); // get buffer size // (hard to say what this should be, given hi-dpi etc)