aboutsummaryrefslogtreecommitdiff
path: root/spec/KeymapEvaluatorSpec.cpp
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2025-03-23 18:27:52 +0530
committerAkshay Nair <phenax5@gmail.com>2025-03-23 18:34:50 +0530
commit9cc72e8ea9f59f9a9627d05528d54a559ebd412c (patch)
tree7007e42dbbd003f6c57d90d35b175983a2e829b7 /spec/KeymapEvaluatorSpec.cpp
parent18b3e4939931c0d2bf779d2e52cb0c90e282ec97 (diff)
downloadnull-browser-9cc72e8ea9f59f9a9627d05528d54a559ebd412c.tar.gz
null-browser-9cc72e8ea9f59f9a9627d05528d54a559ebd412c.zip
Fix segfault with luaruntime destructor
Diffstat (limited to '')
-rw-r--r--spec/KeymapEvaluatorSpec.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/KeymapEvaluatorSpec.cpp b/spec/KeymapEvaluatorSpec.cpp
index 4c19dfd..8e8ba87 100644
--- a/spec/KeymapEvaluatorSpec.cpp
+++ b/spec/KeymapEvaluatorSpec.cpp
@@ -7,7 +7,7 @@ class KeymapEvaluatorSpec : public QObject {
Q_OBJECT
private slots:
- void testEvaluateSingleKeyChord() {
+ void test_evaluate_single_key_chord() {
context("when the key sequence is mapped");
it("calls mapping") {
int keymapWasCalled = false;
@@ -33,7 +33,7 @@ private slots:
}
}
- void testEvaluateMultiKeySequence() {
+ void test_evaluate_multi_key_sequence() {
context("when the full key sequence is mapped");
it("calls mapping") {
int keymapWasCalled = false;