diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-03-23 18:27:52 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-03-23 18:34:50 +0530 |
| commit | 9cc72e8ea9f59f9a9627d05528d54a559ebd412c (patch) | |
| tree | 7007e42dbbd003f6c57d90d35b175983a2e829b7 /spec/KeymapEvaluatorSpec.cpp | |
| parent | 18b3e4939931c0d2bf779d2e52cb0c90e282ec97 (diff) | |
| download | null-browser-9cc72e8ea9f59f9a9627d05528d54a559ebd412c.tar.gz null-browser-9cc72e8ea9f59f9a9627d05528d54a559ebd412c.zip | |
Fix segfault with luaruntime destructor
Diffstat (limited to '')
| -rw-r--r-- | spec/KeymapEvaluatorSpec.cpp | 4 |
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; |
