Raise memory expectation in test slightly

This commit is contained in:
Jaiden Mispy 2016-01-12 23:28:53 -08:00
parent 6db13e085b
commit 25e3724f4d
2 changed files with 3 additions and 3 deletions

View file

@ -96,7 +96,7 @@ module Ebooks
end
self
end
def initialize
@tokens = []
@ -113,7 +113,7 @@ module Ebooks
return @tikis[token]
else
(@tokens.length+1)%1000 == 0 and puts "#{@tokens.length+1} tokens"
@tokens << token
@tokens << token
return @tikis[token] = @tokens.length-1
end
end