diff options
Diffstat (limited to 'test/programs/binary_program.test.cpp')
-rw-r--r-- | test/programs/binary_program.test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/programs/binary_program.test.cpp b/test/programs/binary_program.test.cpp index a5cf7b6e39..7fc2acbf77 100644 --- a/test/programs/binary_program.test.cpp +++ b/test/programs/binary_program.test.cpp @@ -35,5 +35,5 @@ TEST(BinaryProgram, ObtainValues) { EXPECT_EQ(3, binaryProgram2.uniformLocation("u_ratio")); EXPECT_EQ(-1, binaryProgram2.uniformLocation("a_data")); - EXPECT_THROW(BinaryProgram(""), std::runtime_error); + EXPECT_THROW(BinaryProgram(Blob{ "", false }), std::runtime_error); } |