View | Details | Raw Unified | Return to bug 4078
Collapse All | Expand All

(-)a/t/Number/Price.t (-2 / +1 lines)
Lines 63-69 SKIP: { Link Here
63
        unless $current_locale eq 'fr_FR.UTF-8';
63
        unless $current_locale eq 'fr_FR.UTF-8';
64
64
65
    is( Koha::Number::Price->new(12345678.9)->format( { %$format, with_symbol => 1 } ),
65
    is( Koha::Number::Price->new(12345678.9)->format( { %$format, with_symbol => 1 } ),
66
        '12,345,678.90', 'US: format 12,345,678.90 with symbol' );
66
        '$ 12,345,678.90', 'US: format 12,345,678.90 with symbol' );
67
    is( Koha::Number::Price->new('12,345,678.90')->unformat,
67
    is( Koha::Number::Price->new('12,345,678.90')->unformat,
68
        '12345678.9', 'US: unformat 12345678.9' );
68
        '12345678.9', 'US: unformat 12345678.9' );
69
    setlocale(LC_NUMERIC, $orig_locale);
69
    setlocale(LC_NUMERIC, $orig_locale);
70
- 

Return to bug 4078