Forum Discussion

Shwetali's avatar
Shwetali
New Contributor
2 years ago
Solved

assert in groovy fails because of spaces in response and no spaces in database value .Is there any s

in groovy script -comparing soap response  with database 

values are same but it fails when I asserting it because of spaces in response's data.

error like assertion failed 

responseid==dbtableid

 |.           || 

 '23'            |23

          false

error at line 27

Is there any solution?

  • Shwetali,

    you need to make sure you compare the same data types (i.e., both are strings or integers).

     

    To get rid of the whitespaces at the beginning and the end strings you can use the trim() method:

     

    myString.trim()

     

1 Reply

  • KarelHusa's avatar
    KarelHusa
    Champion Level 3

    Shwetali,

    you need to make sure you compare the same data types (i.e., both are strings or integers).

     

    To get rid of the whitespaces at the beginning and the end strings you can use the trim() method:

     

    myString.trim()