We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3260380 commit 37bdb83Copy full SHA for 37bdb83
1 file changed
test/controllers/default.js
@@ -423,8 +423,8 @@ function viewIndex() {
423
var name = 'controller: ';
424
425
assert.ok(self.path.public('file.txt').endsWith('/public/file.txt'), name + 'path.public');
426
- assert.ok(self.path.logs('file.txt').endsWith('/logs/file.txt'), name + 'path.logs');
427
- assert.ok(self.path.temp('file.txt').endsWith('/tmp/file.txt'), name + 'path.temp');
+ assert.ok(self.path.logs('file.txt').endsWith('/file.txt'), name + 'path.logs');
+ assert.ok(self.path.temp('file.txt').endsWith('/file.txt'), name + 'path.temp');
428
429
self.meta('A', 'B');
430
assert.ok(self.repository['$title'] === 'A' && self.repository['$description'] === 'B', name + 'meta() - write');
0 commit comments