Commit 5b38400b authored by Björn Bartels's avatar Björn Bartels 👩🏻
Browse files

PATLAB-7 update adapter tests

parent c0df5d20
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -41,10 +41,10 @@ describe('Patternlibrary instanciation and configuration:', function() {
	    });
	
	    it('throws an error if you try to pass something other than a function as an adapter', function() {
	        var s = new Patternlibrary.Patternlibrary();
	        var p = new Patternlibrary.Patternlibrary();

	        expect(function() {
	            p.adapter('docs', 'kittens');
	            p.adapter('cats', 'kittens');
	        }).to.throw(Error);
	    });
	});