Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6876071
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T04:25:56+00:00 2026-05-27T04:25:56+00:00

This is my unittest code: def testExtractObject(self): self.maxDiff = None objects = Script(compare.py).extractObjects() self.assertListEqual([Object(‘ClassA’,2,5,None),

  • 0

This is my unittest code:

def testExtractObject(self):
    self.maxDiff = None
    objects = Script("compare.py").extractObjects()
    self.assertListEqual([Object('ClassA',2,5,None),
                    Object('ClassB',1,3,None),
                    Object('ClassC',0,2,None)], objects)

This is the failure message:

AssertionError: Lists differ: [Object(name='ClassA', meth... != [Object(name='ClassA', meth...

First differing element 0:
Object(name='ClassA', methods=2, lines=5, description=None)
Object(name='ClassA', methods=2, lines=5, description=None)

[Object(name='ClassA', methods=2, lines=5, description=None),
 Object(name='ClassB', methods=1, lines=3, description=None),
 Object(name='ClassC', methods=0, lines=2, description=None)]

I cannot figure out what the difference between the lists are from this message, anyone have some insight into this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T04:25:57+00:00Added an answer on May 27, 2026 at 4:25 am

    You have to tell python how to determine whether or not two objects are equal. You do this by adding an __eq__ function to your class

    class SomeObject(object):
        def __eq__(self, other):
            return self.a == other.a and self.b == other.b
    

    Then objects which pass this test will be considered equal. By default the equality test for objects is left is right which is only true when they are the same object, not two objects with the same values.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can it be that this test case import unittest class PropTest(unittest.TestCase): def test(self):
I'm trying to unit test some code that looks like this: def main(): parser
How do you unit test code decorated with the PrincipalPermission attribute? For example, this
I've got unit test with this code: Excel.Application objExcel = new Excel.Application(); Excel.Workbook objWorkbook
I have this code that works in a unit test but doesn't work when
Following the example in PyUnit, I came up with the following unittest code that
I have this following python code, it works fine in python but fails with
I've tried to run the following code on Komodo IDE (for python): import unittest
I am trying to unit test my sqlalchemy code. def add_user(*user_details): try: u =
When I paste this code into a REPL, it works fine: (use 'clojure.contrib.seq-utils) (defn-

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.