@@ -49,7 +49,7 @@ test.group('Tracing Channels', () => {
4949 assert . lengthOf ( collector . messages . end , 1 )
5050
5151 assert . equal ( collector . messages . start [ 0 ] . operation , 'get' )
52- assert . equal ( collector . messages . start [ 0 ] . key , 'test :nonexistent' )
52+ assert . equal ( collector . messages . start [ 0 ] . key , 'bentocache :nonexistent' )
5353 assert . equal ( collector . messages . start [ 0 ] . store , 'primary' )
5454
5555 assert . equal ( collector . messages . end [ 0 ] . hit , false )
@@ -86,7 +86,7 @@ test.group('Tracing Channels', () => {
8686 assert . lengthOf ( collector . messages . end , 1 )
8787
8888 assert . equal ( collector . messages . start [ 0 ] . operation , 'set' )
89- assert . equal ( collector . messages . start [ 0 ] . key , 'test :foo' )
89+ assert . equal ( collector . messages . start [ 0 ] . key , 'bentocache :foo' )
9090 assert . equal ( collector . messages . start [ 0 ] . store , 'primary' )
9191 } )
9292
@@ -104,7 +104,7 @@ test.group('Tracing Channels', () => {
104104 assert . lengthOf ( collector . messages . end , 1 )
105105
106106 assert . equal ( collector . messages . start [ 0 ] . operation , 'delete' )
107- assert . equal ( collector . messages . start [ 0 ] . key , 'test :foo' )
107+ assert . equal ( collector . messages . start [ 0 ] . key , 'bentocache :foo' )
108108 } )
109109
110110 test ( 'traces deleteMany operation' , async ( { assert, cleanup } ) => {
@@ -122,7 +122,7 @@ test.group('Tracing Channels', () => {
122122 assert . lengthOf ( collector . messages . end , 1 )
123123
124124 assert . equal ( collector . messages . start [ 0 ] . operation , 'deleteMany' )
125- assert . deepEqual ( collector . messages . start [ 0 ] . keys , [ 'test :foo' , 'test :baz' ] )
125+ assert . deepEqual ( collector . messages . start [ 0 ] . keys , [ 'bentocache :foo' , 'bentocache :baz' ] )
126126 } )
127127
128128 test ( 'traces clear operation' , async ( { assert, cleanup } ) => {
@@ -154,7 +154,7 @@ test.group('Tracing Channels', () => {
154154 assert . lengthOf ( collector . messages . end , 1 )
155155
156156 assert . equal ( collector . messages . start [ 0 ] . operation , 'expire' )
157- assert . equal ( collector . messages . start [ 0 ] . key , 'test :foo' )
157+ assert . equal ( collector . messages . start [ 0 ] . key , 'bentocache :foo' )
158158 } )
159159
160160 test ( 'traces getOrSet with cache hit' , async ( { assert, cleanup } ) => {
@@ -193,7 +193,7 @@ test.group('Tracing Channels', () => {
193193 assert . lengthOf ( setMessages , 1 )
194194
195195 assert . equal ( getMessages [ 0 ] . hit , false )
196- assert . equal ( setMessages [ 0 ] . key , 'test :newkey' )
196+ assert . equal ( setMessages [ 0 ] . key , 'bentocache :newkey' )
197197 } )
198198
199199 test ( 'traces namespaced operations with full key' , async ( { assert, cleanup } ) => {
@@ -204,7 +204,7 @@ test.group('Tracing Channels', () => {
204204
205205 await cache . namespace ( 'users' ) . set ( { key : '123' , value : 'john' } )
206206
207- assert . equal ( collector . messages . start [ 0 ] . key , 'test :users:123' )
207+ assert . equal ( collector . messages . start [ 0 ] . key , 'bentocache :users:123' )
208208 } )
209209
210210 test ( 'traces graced get operation' , async ( { assert, cleanup } ) => {
0 commit comments