diff --git a/l10n_us_hr_payroll/data/state/ri_rhode_island.xml b/l10n_us_hr_payroll/data/state/ri_rhode_island.xml
index de004eca..155a2c86 100644
--- a/l10n_us_hr_payroll/data/state/ri_rhode_island.xml
+++ b/l10n_us_hr_payroll/data/state/ri_rhode_island.xml
@@ -22,12 +22,12 @@
- 1.3
+ 1.06
-
+
US RI Rhode Island Exemption Rate
us_ri_sit_exemption_rate
@@ -57,13 +57,41 @@
{
- 'weekly': ((1255, 0.00, 3.75), (2853, 47.06, 4.75), ('inf', 122.97, 5.99)),
- 'bi-weekly': ((2510, 0.00, 3.75), (5706, 94.13, 4.75), ('inf', 245.94, 5.99)),
- 'semi-monthly': ((2719, 0.00, 3.75), (6181, 101.96, 4.75), ('inf', 266.41, 5.99)),
- 'monthly': ((5438, 0.00, 3.75), (12363, 203.93, 4.75), ('inf', 532.87, 5.99)),
- 'quarterly': ((16313, 0.00, 3.75), (37088, 611.74, 4.75), ('inf', 1598.55, 5.99)),
- 'semi-annually': ((32625, 0.00, 3.75), (74175, 1223.44, 4.75), ('inf', 3197.07, 5.99)),
- 'annually': ((65250, 0.00, 3.75), (148350, 2446.88, 4.75), ('inf', 6394.13, 5.99)),
+ 'weekly': (
+ ( 1255, 0.00, 3.75),
+ ( 2853, 47.06, 4.75),
+ ('inf', 122.97, 5.99),
+ ),
+ 'bi-weekly': (
+ ( 2510, 0.00, 3.75),
+ ( 5706, 94.13, 4.75),
+ ('inf', 245.94, 5.99),
+ ),
+ 'semi-monthly': (
+ ( 2719, 0.00, 3.75),
+ ( 6181, 101.96, 4.75),
+ ('inf', 266.41, 5.99),
+ ),
+ 'monthly': (
+ ( 5438, 0.00, 3.75),
+ (12363, 203.93, 4.75),
+ ('inf', 532.87, 5.99),
+ ),
+ 'quarterly': (
+ (16313, 0.00, 3.75),
+ (37088, 611.74, 4.75),
+ ('inf', 1598.55, 5.99),
+ ),
+ 'semi-annually': (
+ (32625, 0.00, 3.75),
+ (74175, 1223.44, 4.75),
+ ('inf', 3197.07, 5.99),
+ ),
+ 'annually': (
+ ( 65250, 0.00, 3.75),
+ (148350, 2446.88, 4.75),
+ ( 'inf', 6394.13, 5.99),
+ ),
}
diff --git a/l10n_us_hr_payroll/tests/test_us_ri_rhode_island_payslip_2020.py b/l10n_us_hr_payroll/tests/test_us_ri_rhode_island_payslip_2020.py
index 6d4b35dd..9d92fec1 100755
--- a/l10n_us_hr_payroll/tests/test_us_ri_rhode_island_payslip_2020.py
+++ b/l10n_us_hr_payroll/tests/test_us_ri_rhode_island_payslip_2020.py
@@ -9,7 +9,7 @@ class TestUsRIPayslip(TestUsPayslip):
# 2020 Taxes and Rates
###
RI_UNEMP_MAX_WAGE = 24000.0
- RI_UNEMP = 1.3
+ RI_UNEMP = 1.06
# Calculation based on example http://www.tax.ri.gov/forms/2020/Withholding/2020%20Withhholding%20Tax%20Booklet.pdf
def _test_sit(self, wage, allowances, additional_withholding, exempt, schedule_pay, date_start, expected_withholding):