From 7b1ec266554fcc9ba90032e98bde6a776f8868fb Mon Sep 17 00:00:00 2001
From: syuilo <Syuilotan@yahoo.co.jp>
Date: Wed, 9 Feb 2022 04:53:07 +0900
Subject: [PATCH] fix test

---
 packages/backend/test/chart.ts | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/packages/backend/test/chart.ts b/packages/backend/test/chart.ts
index a869e0bae7..38713a9401 100644
--- a/packages/backend/test/chart.ts
+++ b/packages/backend/test/chart.ts
@@ -439,8 +439,8 @@ describe('Chart', () => {
 				await testIntersectionChart.addB('carol');
 				await testIntersectionChart.save();
 	
-				const chartHours = await testUniqueChart.getChart('hour', 3, null);
-				const chartDays = await testUniqueChart.getChart('day', 3, null);
+				const chartHours = await testIntersectionChart.getChart('hour', 3, null);
+				const chartDays = await testIntersectionChart.getChart('day', 3, null);
 	
 				assert.deepStrictEqual(chartHours, {
 					aAndB: [0, 0, 0],
@@ -458,8 +458,8 @@ describe('Chart', () => {
 				await testIntersectionChart.addB('alice');
 				await testIntersectionChart.save();
 	
-				const chartHours = await testUniqueChart.getChart('hour', 3, null);
-				const chartDays = await testUniqueChart.getChart('day', 3, null);
+				const chartHours = await testIntersectionChart.getChart('hour', 3, null);
+				const chartDays = await testIntersectionChart.getChart('day', 3, null);
 	
 				assert.deepStrictEqual(chartHours, {
 					aAndB: [1, 0, 0],