Skip to content

Commit

Permalink
Fixed lint errors in src/api/topics.js files
Browse files Browse the repository at this point in the history
  • Loading branch information
MrUrias committed Feb 28, 2025
1 parent ae11338 commit dee3b24
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/topics.js
Original file line number Diff line number Diff line change
Expand Up @@ -2799,10 +2799,10 @@ describe('Filtering Unanswered Topics', () => {
adminLogin = await helpers.loginUser('admin', '123456');
csrf_token = adminLogin.csrf_token;

console.log("Admin Login Response:", adminLogin);
console.log('Admin Login Response:', adminLogin);

const isAdmin = await privileges.users.isAdministrator(adminUid);
console.log("Is Admin:", isAdmin);
console.log('Is Admin:', isAdmin);


categoryObj = await categories.create({
Expand Down Expand Up @@ -2838,7 +2838,7 @@ describe('Filtering Unanswered Topics', () => {
content: content,
_csrf: csrf,
}, jar);
console.log("CSRF Token:", csrf_token);
console.log('CSRF Token:', csrf_token);
return response.data;
} catch (error) {
console.error('Error replying to topic:', error);
Expand Down

0 comments on commit dee3b24

Please sign in to comment.