Explorar el Código

error in test is corrected

yauhenip hace 8 años
padre
commit
f192eb39ef
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      src/test/java/com/zipcoder/payment/PaymentPresenterTest.java

+ 1
- 1
src/test/java/com/zipcoder/payment/PaymentPresenterTest.java Ver fichero

@@ -56,7 +56,7 @@ public class PaymentPresenterTest {
56 56
         payments[1] = check;
57 57
 
58 58
         PaymentPresenter presenter = new PaymentPresenter();
59
-        String expected = "Paypal Tamara Mowry tamara@mowry.com\nCheck Tia Mowry ***4551\n";
59
+        String expected = "Check Tia Mowry ***4551\nPaypal Tamara Mowry tamara@mowry.com\n";
60 60
 
61 61
         String actual = presenter.toStringById(payments);
62 62
         assertEquals(expected, actual);