Drop ID from marshalled content

This commit is contained in:
Ettore Di Giacinto
2019-11-04 11:11:33 +01:00
parent 6855c3bdf7
commit 8c86f6c84d
3 changed files with 8 additions and 8 deletions

View File

@@ -94,8 +94,8 @@ var _ = Describe("Package", func() {
f, err := a1.BuildFormula()
Expect(err).ToNot(HaveOccurred())
Expect(len(f)).To(Equal(2))
Expect(f[0].String()).To(Equal("or(not(3dabcd83), dc3841f5)"))
Expect(f[1].String()).To(Equal("or(not(3dabcd83), not(5f881536))"))
Expect(f[0].String()).To(Equal("or(not(c31f5842), a4910f77)"))
Expect(f[1].String()).To(Equal("or(not(c31f5842), not(a97670be))"))
})
})