Skip to content

Commit

Permalink
missing self arguments, etc
Browse files Browse the repository at this point in the history
  • Loading branch information
fchapoton committed Sep 12, 2024
1 parent d052b8b commit 7a6b5bc
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lmfdb/classical_modular_forms/test_cmf.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


class CmfTest(LmfdbTest):
def runTest():
def runTest(self):
pass

def test_expression_divides(self):
Expand Down
2 changes: 1 addition & 1 deletion lmfdb/classical_modular_forms/test_cmf2.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


class CmfTest(LmfdbTest):
def runTest():
def runTest(self):
pass

def test_download_qexp(self):
Expand Down
3 changes: 2 additions & 1 deletion lmfdb/ecnf/ecnf_test_pages.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
from lmfdb.tests import LmfdbTest
from lmfdb import db


class ECNFTest(LmfdbTest):

def runTest():
def runTest(self):
pass

def test_d6_pages(self):
Expand Down
3 changes: 2 additions & 1 deletion lmfdb/genus2_curves/g2c_test_pages.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
from lmfdb.tests import LmfdbTest
from lmfdb import db


class Genus2Test(LmfdbTest):

def runTest():
def runTest(self):
pass

def test_all_pages(self):
Expand Down
3 changes: 2 additions & 1 deletion lmfdb/siegel_modular_forms/smf_test_pages.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
from lmfdb.tests import LmfdbTest
from lmfdb import db


class SMFPageTest(LmfdbTest):

def runTest():
def runTest(self):
pass

def test_all_pages(self):
Expand Down

0 comments on commit 7a6b5bc

Please sign in to comment.