summaryrefslogtreecommitdiff
path: root/tests/invariants.lua
diff options
context:
space:
mode:
authorJackson Moore <jacksonmoore@tuta.io>2026-09-04 18:44:32 +0200
committerJackson Moore <jacksonmoore@tuta.io>2026-09-04 18:44:32 +0200
commitc7b14ffb6d14969c9c41864e827f33f8e80fc24e (patch)
treec7c0ac23dc93a4a8b75449d2be4d0e05c4f05f9e /tests/invariants.lua
parent9013636a57144e1f57c9339e7888d588430aae6a (diff)
Rename plugin to clever-tee
Diffstat (limited to 'tests/invariants.lua')
-rw-r--r--tests/invariants.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/invariants.lua b/tests/invariants.lua
index 1c17b69..b5b1251 100644
--- a/tests/invariants.lua
+++ b/tests/invariants.lua
@@ -1,7 +1,7 @@
local M = {}
-local domain = require("clever_f.domain")
-local text_topology = require("clever_f.text_topology")
+local domain = require("clever_tee.domain")
+local text_topology = require("clever_tee.text_topology")
local function same(expected, actual, message)
if expected ~= actual then
@@ -194,7 +194,7 @@ end
local function assert_temporary_ownership(options, after)
same(0, #after.temporary_overlays, "an action must release temporary overlay ownership")
for _, highlight in pairs(options.host:highlights()) do
- if highlight.group == "CleverFCursor" or highlight.group == "CleverFDirect" then
+ if highlight.group == "CleverTeeCursor" or highlight.group == "CleverTeeDirect" then
error("an action must release each temporary presentation resource", 3)
end
end