Skip to content

Commit

Permalink
use only single quotes to be consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathias Schreck committed Feb 5, 2014
1 parent e91b5a6 commit fadc23e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/shared/store/memory_store.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@ describe('MemoryStore', function() {
store = new MemoryStore();
});

it("should undefined for missing keys", function() {
it('should undefined for missing keys', function() {
var value = store.get('foobar');
should.not.exist(value);
});

it("should set and get a key + value", function() {
it('should set and get a key + value', function() {
store.set('cached_value', 42);
store.get('cached_value').should.equal(42);

store.set('cached_value', 'new value');
store.get('cached_value').should.equal('new value');
});

it("should be able to clear a key", function() {
it('should be able to clear a key', function() {
var value;

store.set('somethin', 'some value');
Expand All @@ -32,7 +32,7 @@ describe('MemoryStore', function() {
should.not.exist(value);
});

it("should be able to expire a key", function() {
it('should be able to expire a key', function() {
var value,
fakeTimer = sinon.useFakeTimers();

Expand Down

0 comments on commit fadc23e

Please sign in to comment.