Skip to content

Commit 380a138

Browse files
committed
use a more reasonable test window size
1 parent 687fa5d commit 380a138

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/src/basics_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,11 @@ TEST_F(PolyscopeTest, EmptyBuffer) {
113113
TEST_F(PolyscopeTest, WindowProperties) {
114114

115115
// set/get window size
116-
polyscope::view::setWindowSize(300, 1000);
116+
polyscope::view::setWindowSize(300, 400);
117117
int32_t w, h;
118118
std::tie(w, h) = polyscope::view::getWindowSize();
119119
EXPECT_EQ(w, 300);
120-
EXPECT_EQ(h, 1000);
120+
EXPECT_EQ(h, 400);
121121

122122
// get buffer size
123123
// (hard to say what this should be, given hi-dpi etc)

0 commit comments

Comments
 (0)