aboutsummaryrefslogtreecommitdiff
path: root/tests/dedo.go
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2025-01-25 14:12:51 -0300
committerEuAndreh <eu@euandre.org>2025-01-25 14:12:51 -0300
commit96e78afb1a5cc0dfed54aaa9290dae51ddda29fd (patch)
tree6c6893dc25d0616a608842aa0877bac84bbb196f /tests/dedo.go
parentsrc/dedo.go: Remove Tx.managed field (diff)
downloaddedo-96e78afb1a5cc0dfed54aaa9290dae51ddda29fd.tar.gz
dedo-96e78afb1a5cc0dfed54aaa9290dae51ddda29fd.tar.xz
src/dedo.go: Remove Bucket.Writable() and Tx.Writable() public API
Diffstat (limited to 'tests/dedo.go')
-rw-r--r--tests/dedo.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/dedo.go b/tests/dedo.go
index d2b93bb..ddb217d 100644
--- a/tests/dedo.go
+++ b/tests/dedo.go
@@ -3314,7 +3314,7 @@ func TestDB_BeginRW(t *testing.T) {
if tx.DB() != db.DB {
t.Fatal("unexpected tx database")
- } else if !tx.Writable() {
+ } else if !tx.writable {
t.Fatal("expected writable tx")
}