Skip to content

Commit

Permalink
updated pagecontroller file name to be lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeGoodall committed Dec 6, 2023
1 parent 9d347d1 commit 0f05190
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/controllers/datasetController.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict'

import PageController from './PageController.js'
import PageController from './pageController.js'

// ToDo: we shouldn't hardcode these values here, should we get them from the API
// maybe take from specification
Expand Down
2 changes: 1 addition & 1 deletion src/controllers/errorsController.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict'

import PageController from './PageController.js'
import PageController from './pageController.js'

import { severityLevels, dataSubjects } from '../utils/utils.js'

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/controllers/uploadController.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import multer from 'multer'
import axios from 'axios'
import { readFile } from 'fs/promises'
import { lookup } from 'mime-types'
import PageController from './PageController.js'
import PageController from './pageController.js'
import config from '../../config/index.js'

import { severityLevels } from '../utils/utils.js'
Expand Down
2 changes: 1 addition & 1 deletion test/unit/MyController.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import PageController from '../../src/controllers/PageController.js'
import PageController from '../../src/controllers/pageController.js'

import { describe, it, vi, expect } from 'vitest'

Expand Down

0 comments on commit 0f05190

Please sign in to comment.