Use self rather than super to make stringbuilder overridable

This commit is contained in:
Matthew Pickering 2018-01-04 16:51:32 +00:00
parent 61da89bc8a
commit d7944aba3e

View file

@ -48,7 +48,7 @@ self: super: {
clock = dontCheck super.clock;
Dust-crypto = dontCheck super.Dust-crypto;
hasql-postgres = dontCheck super.hasql-postgres;
hspec = super.hspec.override { stringbuilder = dontCheck super.stringbuilder; };
hspec = super.hspec.override { stringbuilder = dontCheck self.stringbuilder; };
hspec-core = super.hspec-core.override { silently = dontCheck super.silently; temporary = dontCheck super.temporary; };
hspec-expectations = dontCheck super.hspec-expectations;
HTTP = dontCheck super.HTTP;