summaryrefslogtreecommitdiff
path: root/Tests/LibGL/TestAPI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/LibGL/TestAPI.cpp')
-rw-r--r--Tests/LibGL/TestAPI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/LibGL/TestAPI.cpp b/Tests/LibGL/TestAPI.cpp
index 7f717db686..b539c5db88 100644
--- a/Tests/LibGL/TestAPI.cpp
+++ b/Tests/LibGL/TestAPI.cpp
@@ -11,7 +11,7 @@
static NonnullOwnPtr<GL::GLContext> create_testing_context()
{
auto bitmap = MUST(Gfx::Bitmap::try_create(Gfx::BitmapFormat::BGRx8888, { 1, 1 }));
- auto context = GL::create_context(*bitmap);
+ auto context = MUST(GL::create_context(*bitmap));
GL::make_context_current(context);
return context;
}